diff --git a/eng/mgmt/mgmtmetadata/apimanagement_resource-manager.txt b/eng/mgmt/mgmtmetadata/apimanagement_resource-manager.txt index 6d6ed680b432..789e33cddcc1 100644 --- a/eng/mgmt/mgmtmetadata/apimanagement_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/apimanagement_resource-manager.txt @@ -1,11 +1,11 @@ -2019-07-23 23:04:04 UTC +2020-02-11 05:53:16 UTC 1) azure-rest-api-specs repository information GitHub user: Azure Branch: master -Commit: 2fcd0139889b923094b39a6aae015e1ea3604b68 +Commit: 26bdb0c40d9403e07980e41f054ec75f72225d52 2) AutoRest information Requested version: latest -Bootstrapper version: C:\Users\sasolank\AppData\Roaming\npm `-- autorest@2.0.4283 +Bootstrapper version: C:\Users\sasolank\AppData\Roaming\npm `-- autorest@2.0.4413 Latest installed version: diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/CHANGELOG.md b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/CHANGELOG.md index 9f3dff82329f..f42e4da9d4a7 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/CHANGELOG.md +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/CHANGELOG.md @@ -1,5 +1,12 @@ ## Microsoft.Azure.Management.ApiManagment release notes +### Changes in 4.12.0-preview + +- Added support for `developerPortal` endpoint in apimanagement service resource. +- Added support for overriding the `common` tenant when configuring AAD identity provider. +- Added support for specifying `httpCorrelationProtocol` and `verbosity` when configuring diagnostics on global and api level. +- Added support for importing OpenApi 3.0 document in Json format. + ### Changes in 4.11.0-preview - Removed id validation on `groups`, `apis`, `products`, `users` and `backend` to unblock existing customers to onboard to new sdks diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/ApiExportOperations.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/ApiExportOperations.cs index 6f0f1c957d3d..2d7f92833e35 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/ApiExportOperations.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/ApiExportOperations.cs @@ -68,7 +68,7 @@ internal ApiExportOperations(ApiManagementClient client) /// /// Format in which to export the Api Details to the Storage Blob with Sas Key /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl', - /// 'Openapi' + /// 'Openapi', 'OpenapiJson' /// /// /// Headers that will be added to request. diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/ApiExportOperationsExtensions.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/ApiExportOperationsExtensions.cs index d6c390ba468c..1408a8bbc387 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/ApiExportOperationsExtensions.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/ApiExportOperationsExtensions.cs @@ -42,7 +42,7 @@ public static partial class ApiExportOperationsExtensions /// /// Format in which to export the Api Details to the Storage Blob with Sas Key /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl', - /// 'Openapi' + /// 'Openapi', 'OpenapiJson' /// public static ApiExportResult Get(this IApiExportOperations operations, string resourceGroupName, string serviceName, string apiId, string format) { @@ -70,7 +70,7 @@ public static ApiExportResult Get(this IApiExportOperations operations, string r /// /// Format in which to export the Api Details to the Storage Blob with Sas Key /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl', - /// 'Openapi' + /// 'Openapi', 'OpenapiJson' /// /// /// The cancellation token. diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/IApiExportOperations.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/IApiExportOperations.cs index 378dcb46bb7b..774bce405e8c 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/IApiExportOperations.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/IApiExportOperations.cs @@ -42,7 +42,7 @@ public partial interface IApiExportOperations /// /// Format in which to export the Api Details to the Storage Blob with /// Sas Key valid for 5 minutes. Possible values include: 'Swagger', - /// 'Wsdl', 'Wadl', 'Openapi' + /// 'Wsdl', 'Wadl', 'Openapi', 'OpenapiJson' /// /// /// The headers that will be added to request. diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiCreateOrUpdateParameter.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiCreateOrUpdateParameter.cs index 63f3b3639e27..80b4ad63367b 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiCreateOrUpdateParameter.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiCreateOrUpdateParameter.cs @@ -76,7 +76,8 @@ public ApiCreateOrUpdateParameter() /// Format of the Content in which the API is /// getting imported. Possible values include: 'wadl-xml', /// 'wadl-link-json', 'swagger-json', 'swagger-link-json', 'wsdl', - /// 'wsdl-link', 'openapi', 'openapi+json', 'openapi-link' + /// 'wsdl-link', 'openapi', 'openapi+json', 'openapi-link', + /// 'openapi+json-link' /// Criteria to limit import of WSDL to a /// subset of the document. /// Type of Api to create. @@ -243,7 +244,7 @@ public ApiCreateOrUpdateParameter() /// Gets or sets format of the Content in which the API is getting /// imported. Possible values include: 'wadl-xml', 'wadl-link-json', /// 'swagger-json', 'swagger-link-json', 'wsdl', 'wsdl-link', - /// 'openapi', 'openapi+json', 'openapi-link' + /// 'openapi', 'openapi+json', 'openapi-link', 'openapi+json-link' /// [JsonProperty(PropertyName = "properties.format")] public string Format { get; set; } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceBaseProperties.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceBaseProperties.cs index faf25a86ab3b..25a9321bc86a 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceBaseProperties.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceBaseProperties.cs @@ -54,6 +54,8 @@ public ApiManagementServiceBaseProperties() /// Management service. /// Management API endpoint URL of the /// API Management service. + /// Developer Portal endpoint URL of + /// the API Management service. /// SCM endpoint URL of the API Management /// service. /// Custom hostname configuration @@ -120,7 +122,7 @@ public ApiManagementServiceBaseProperties() /// Internal means that API Management deployment is setup inside a /// Virtual Network having an Intranet Facing Endpoint only. Possible /// values include: 'None', 'External', 'Internal' - public ApiManagementServiceBaseProperties(string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string)) + public ApiManagementServiceBaseProperties(string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string developerPortalUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string)) { NotificationSenderEmail = notificationSenderEmail; ProvisioningState = provisioningState; @@ -130,6 +132,7 @@ public ApiManagementServiceBaseProperties() GatewayRegionalUrl = gatewayRegionalUrl; PortalUrl = portalUrl; ManagementApiUrl = managementApiUrl; + DeveloperPortalUrl = developerPortalUrl; ScmUrl = scmUrl; HostnameConfigurations = hostnameConfigurations; PublicIPAddresses = publicIPAddresses; @@ -203,6 +206,12 @@ public ApiManagementServiceBaseProperties() [JsonProperty(PropertyName = "managementApiUrl")] public string ManagementApiUrl { get; private set; } + /// + /// Gets developer Portal endpoint URL of the API Management service. + /// + [JsonProperty(PropertyName = "developerPortalUrl")] + public string DeveloperPortalUrl { get; private set; } + /// /// Gets SCM endpoint URL of the API Management service. /// diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceResource.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceResource.cs index c011c0de7ddd..f86061a77689 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceResource.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceResource.cs @@ -66,6 +66,8 @@ public ApiManagementServiceResource() /// Management service. /// Management API endpoint URL of the /// API Management service. + /// Developer Portal endpoint URL of + /// the API Management service. /// SCM endpoint URL of the API Management /// service. /// Custom hostname configuration @@ -135,7 +137,7 @@ public ApiManagementServiceResource() /// Managed service identity of the Api /// Management service. /// ETag of the resource. - public ApiManagementServiceResource(string publisherEmail, string publisherName, ApiManagementServiceSkuProperties sku, string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string), ApiManagementServiceIdentity identity = default(ApiManagementServiceIdentity), string etag = default(string)) + public ApiManagementServiceResource(string publisherEmail, string publisherName, ApiManagementServiceSkuProperties sku, string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string developerPortalUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string), ApiManagementServiceIdentity identity = default(ApiManagementServiceIdentity), string etag = default(string)) : base(id, name, type, tags) { NotificationSenderEmail = notificationSenderEmail; @@ -146,6 +148,7 @@ public ApiManagementServiceResource() GatewayRegionalUrl = gatewayRegionalUrl; PortalUrl = portalUrl; ManagementApiUrl = managementApiUrl; + DeveloperPortalUrl = developerPortalUrl; ScmUrl = scmUrl; HostnameConfigurations = hostnameConfigurations; PublicIPAddresses = publicIPAddresses; @@ -225,6 +228,12 @@ public ApiManagementServiceResource() [JsonProperty(PropertyName = "properties.managementApiUrl")] public string ManagementApiUrl { get; private set; } + /// + /// Gets developer Portal endpoint URL of the API Management service. + /// + [JsonProperty(PropertyName = "properties.developerPortalUrl")] + public string DeveloperPortalUrl { get; private set; } + /// /// Gets SCM endpoint URL of the API Management service. /// diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceUpdateParameters.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceUpdateParameters.cs index 23f0360dd45d..a291ec81d9f4 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceUpdateParameters.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ApiManagementServiceUpdateParameters.cs @@ -61,6 +61,8 @@ public ApiManagementServiceUpdateParameters() /// Management service. /// Management API endpoint URL of the /// API Management service. + /// Developer Portal endpoint URL of + /// the API Management service. /// SCM endpoint URL of the API Management /// service. /// Custom hostname configuration @@ -134,7 +136,7 @@ public ApiManagementServiceUpdateParameters() /// Managed service identity of the Api /// Management service. /// ETag of the resource. - public ApiManagementServiceUpdateParameters(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string), string publisherEmail = default(string), string publisherName = default(string), ApiManagementServiceSkuProperties sku = default(ApiManagementServiceSkuProperties), ApiManagementServiceIdentity identity = default(ApiManagementServiceIdentity), string etag = default(string)) + public ApiManagementServiceUpdateParameters(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string developerPortalUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string), string publisherEmail = default(string), string publisherName = default(string), ApiManagementServiceSkuProperties sku = default(ApiManagementServiceSkuProperties), ApiManagementServiceIdentity identity = default(ApiManagementServiceIdentity), string etag = default(string)) : base(id, name, type, tags) { NotificationSenderEmail = notificationSenderEmail; @@ -145,6 +147,7 @@ public ApiManagementServiceUpdateParameters() GatewayRegionalUrl = gatewayRegionalUrl; PortalUrl = portalUrl; ManagementApiUrl = managementApiUrl; + DeveloperPortalUrl = developerPortalUrl; ScmUrl = scmUrl; HostnameConfigurations = hostnameConfigurations; PublicIPAddresses = publicIPAddresses; @@ -223,6 +226,12 @@ public ApiManagementServiceUpdateParameters() [JsonProperty(PropertyName = "properties.managementApiUrl")] public string ManagementApiUrl { get; private set; } + /// + /// Gets developer Portal endpoint URL of the API Management service. + /// + [JsonProperty(PropertyName = "properties.developerPortalUrl")] + public string DeveloperPortalUrl { get; private set; } + /// /// Gets SCM endpoint URL of the API Management service. /// diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/AuthenticationSettingsContract.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/AuthenticationSettingsContract.cs index aa3ea27a617f..e9d4c3dd13f0 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/AuthenticationSettingsContract.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/AuthenticationSettingsContract.cs @@ -33,15 +33,10 @@ public AuthenticationSettingsContract() /// /// OAuth2 Authentication settings /// OpenID Connect Authentication Settings - /// Specifies whether - /// subscription key is required during call to this API, true - API is - /// included into closed products only, false - API is included into - /// open products alone, null - there is a mix of products. - public AuthenticationSettingsContract(OAuth2AuthenticationSettingsContract oAuth2 = default(OAuth2AuthenticationSettingsContract), OpenIdAuthenticationSettingsContract openid = default(OpenIdAuthenticationSettingsContract), bool? subscriptionKeyRequired = default(bool?)) + public AuthenticationSettingsContract(OAuth2AuthenticationSettingsContract oAuth2 = default(OAuth2AuthenticationSettingsContract), OpenIdAuthenticationSettingsContract openid = default(OpenIdAuthenticationSettingsContract)) { OAuth2 = oAuth2; Openid = openid; - SubscriptionKeyRequired = subscriptionKeyRequired; CustomInit(); } @@ -62,14 +57,5 @@ public AuthenticationSettingsContract() [JsonProperty(PropertyName = "openid")] public OpenIdAuthenticationSettingsContract Openid { get; set; } - /// - /// Gets or sets specifies whether subscription key is required during - /// call to this API, true - API is included into closed products only, - /// false - API is included into open products alone, null - there is a - /// mix of products. - /// - [JsonProperty(PropertyName = "subscriptionKeyRequired")] - public bool? SubscriptionKeyRequired { get; set; } - } } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ContentFormat.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ContentFormat.cs index 1bad0c969a30..0ee9899e6de5 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ContentFormat.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ContentFormat.cs @@ -58,5 +58,10 @@ public static class ContentFormat /// internet address. /// public const string OpenapiLink = "openapi-link"; + /// + /// The Open Api 3.0 Json document is hosted on a publicly accessible + /// internet address. + /// + public const string OpenapijsonLink = "openapi+json-link"; } } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/DiagnosticContract.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/DiagnosticContract.cs index f6d2b2bba129..082e6a043ed2 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/DiagnosticContract.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/DiagnosticContract.cs @@ -49,7 +49,13 @@ public DiagnosticContract() /// Correlation Headers coming to Api Management Service. Only /// applicable to Application Insights diagnostics. Default is /// true. - public DiagnosticContract(string loggerId, string id = default(string), string name = default(string), string type = default(string), string alwaysLog = default(string), SamplingSettings sampling = default(SamplingSettings), PipelineDiagnosticSettings frontend = default(PipelineDiagnosticSettings), PipelineDiagnosticSettings backend = default(PipelineDiagnosticSettings), bool? enableHttpCorrelationHeaders = default(bool?)) + /// Sets correlation protocol to + /// use for Application Insights diagnostics. Possible values include: + /// 'None', 'Legacy', 'W3C' + /// The verbosity level applied to traces + /// emitted by trace policies. Possible values include: 'verbose', + /// 'information', 'error' + public DiagnosticContract(string loggerId, string id = default(string), string name = default(string), string type = default(string), string alwaysLog = default(string), SamplingSettings sampling = default(SamplingSettings), PipelineDiagnosticSettings frontend = default(PipelineDiagnosticSettings), PipelineDiagnosticSettings backend = default(PipelineDiagnosticSettings), bool? enableHttpCorrelationHeaders = default(bool?), string httpCorrelationProtocol = default(string), string verbosity = default(string)) : base(id, name, type) { AlwaysLog = alwaysLog; @@ -58,6 +64,8 @@ public DiagnosticContract() Frontend = frontend; Backend = backend; EnableHttpCorrelationHeaders = enableHttpCorrelationHeaders; + HttpCorrelationProtocol = httpCorrelationProtocol; + Verbosity = verbosity; CustomInit(); } @@ -107,6 +115,22 @@ public DiagnosticContract() [JsonProperty(PropertyName = "properties.enableHttpCorrelationHeaders")] public bool? EnableHttpCorrelationHeaders { get; set; } + /// + /// Gets or sets sets correlation protocol to use for Application + /// Insights diagnostics. Possible values include: 'None', 'Legacy', + /// 'W3C' + /// + [JsonProperty(PropertyName = "properties.httpCorrelationProtocol")] + public string HttpCorrelationProtocol { get; set; } + + /// + /// Gets or sets the verbosity level applied to traces emitted by trace + /// policies. Possible values include: 'verbose', 'information', + /// 'error' + /// + [JsonProperty(PropertyName = "properties.verbosity")] + public string Verbosity { get; set; } + /// /// Validate the object. /// diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ExportFormat.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ExportFormat.cs index a2204f4c64f7..e807228371b3 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ExportFormat.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/ExportFormat.cs @@ -35,5 +35,10 @@ public static class ExportFormat /// Blob. /// public const string Openapi = "openapi-link"; + /// + /// Export the Api Definition in OpenApi Specification 3.0 as JSON + /// document to Storage Blob. + /// + public const string OpenapiJson = "openapi+json-link"; } } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/HttpCorrelationProtocol.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/HttpCorrelationProtocol.cs new file mode 100644 index 000000000000..ea799df9d599 --- /dev/null +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/HttpCorrelationProtocol.cs @@ -0,0 +1,35 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + + /// + /// Defines values for HttpCorrelationProtocol. + /// + public static class HttpCorrelationProtocol + { + /// + /// Do not read and inject correlation headers. + /// + public const string None = "None"; + /// + /// Inject Request-Id and Request-Context headers with request + /// correlation data. See + /// https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/HttpCorrelationProtocol.md. + /// + public const string Legacy = "Legacy"; + /// + /// Inject Trace Context headers. See + /// https://w3c.github.io/trace-context. + /// + public const string W3C = "W3C"; + } +} diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderBaseParameters.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderBaseParameters.cs index ac734f77c0a0..f591f52b47c0 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderBaseParameters.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderBaseParameters.cs @@ -37,6 +37,8 @@ public IdentityProviderBaseParameters() /// Identity Provider Type identifier. Possible /// values include: 'facebook', 'google', 'microsoft', 'twitter', /// 'aad', 'aadB2C' + /// The TenantId to use instead of Common + /// when logging into Active Directory /// List of Allowed Tenants when /// configuring Azure Active Directory login. /// OpenID Connect discovery endpoint hostname @@ -49,9 +51,10 @@ public IdentityProviderBaseParameters() /// Only applies to AAD B2C Identity Provider. /// Password Reset Policy Name. /// Only applies to AAD B2C Identity Provider. - public IdentityProviderBaseParameters(string type = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string)) + public IdentityProviderBaseParameters(string type = default(string), string signinTenant = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string)) { Type = type; + SigninTenant = signinTenant; AllowedTenants = allowedTenants; Authority = authority; SignupPolicyName = signupPolicyName; @@ -74,6 +77,13 @@ public IdentityProviderBaseParameters() [JsonProperty(PropertyName = "type")] public string Type { get; set; } + /// + /// Gets or sets the TenantId to use instead of Common when logging + /// into Active Directory + /// + [JsonProperty(PropertyName = "signinTenant")] + public string SigninTenant { get; set; } + /// /// Gets or sets list of Allowed Tenants when configuring Azure Active /// Directory login. diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderContract.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderContract.cs index 109b43f022f3..652da992ef5b 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderContract.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderContract.cs @@ -48,6 +48,8 @@ public IdentityProviderContract() /// Identity Provider Type /// identifier. Possible values include: 'facebook', 'google', /// 'microsoft', 'twitter', 'aad', 'aadB2C' + /// The TenantId to use instead of Common + /// when logging into Active Directory /// List of Allowed Tenants when /// configuring Azure Active Directory login. /// OpenID Connect discovery endpoint hostname @@ -60,10 +62,11 @@ public IdentityProviderContract() /// Only applies to AAD B2C Identity Provider. /// Password Reset Policy Name. /// Only applies to AAD B2C Identity Provider. - public IdentityProviderContract(string clientId, string clientSecret, string id = default(string), string name = default(string), string type = default(string), string identityProviderContractType = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string)) + public IdentityProviderContract(string clientId, string clientSecret, string id = default(string), string name = default(string), string type = default(string), string identityProviderContractType = default(string), string signinTenant = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string)) : base(id, name, type) { IdentityProviderContractType = identityProviderContractType; + SigninTenant = signinTenant; AllowedTenants = allowedTenants; Authority = authority; SignupPolicyName = signupPolicyName; @@ -88,6 +91,13 @@ public IdentityProviderContract() [JsonProperty(PropertyName = "properties.type")] public string IdentityProviderContractType { get; set; } + /// + /// Gets or sets the TenantId to use instead of Common when logging + /// into Active Directory + /// + [JsonProperty(PropertyName = "properties.signinTenant")] + public string SigninTenant { get; set; } + /// /// Gets or sets list of Allowed Tenants when configuring Azure Active /// Directory login. diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderUpdateParameters.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderUpdateParameters.cs index 84d68629b014..d32298cf5a7c 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderUpdateParameters.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/IdentityProviderUpdateParameters.cs @@ -39,6 +39,8 @@ public IdentityProviderUpdateParameters() /// Identity Provider Type identifier. Possible /// values include: 'facebook', 'google', 'microsoft', 'twitter', /// 'aad', 'aadB2C' + /// The TenantId to use instead of Common + /// when logging into Active Directory /// List of Allowed Tenants when /// configuring Azure Active Directory login. /// OpenID Connect discovery endpoint hostname @@ -58,9 +60,10 @@ public IdentityProviderUpdateParameters() /// external Identity Provider, used to authenticate login request. For /// example, it is App Secret for Facebook login, API Key for Google /// login, Public Key for Microsoft. - public IdentityProviderUpdateParameters(string type = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string), string clientId = default(string), string clientSecret = default(string)) + public IdentityProviderUpdateParameters(string type = default(string), string signinTenant = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string), string clientId = default(string), string clientSecret = default(string)) { Type = type; + SigninTenant = signinTenant; AllowedTenants = allowedTenants; Authority = authority; SignupPolicyName = signupPolicyName; @@ -85,6 +88,13 @@ public IdentityProviderUpdateParameters() [JsonProperty(PropertyName = "properties.type")] public string Type { get; set; } + /// + /// Gets or sets the TenantId to use instead of Common when logging + /// into Active Directory + /// + [JsonProperty(PropertyName = "properties.signinTenant")] + public string SigninTenant { get; set; } + /// /// Gets or sets list of Allowed Tenants when configuring Azure Active /// Directory login. diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/Verbosity.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/Verbosity.cs new file mode 100644 index 000000000000..b3b9d660f1cc --- /dev/null +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Generated/Models/Verbosity.cs @@ -0,0 +1,35 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + + /// + /// Defines values for Verbosity. + /// + public static class Verbosity + { + /// + /// All the traces emitted by trace policies will be sent to the logger + /// attached to this diagnostic instance. + /// + public const string Verbose = "verbose"; + /// + /// Traces with 'severity' set to 'information' and 'error' will be + /// sent to the logger attached to this diagnostic instance. + /// + public const string Information = "information"; + /// + /// Only traces with 'severity' set to 'error' will be sent to the + /// logger attached to this diagnostic instance. + /// + public const string Error = "error"; + } +} diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Microsoft.Azure.Management.ApiManagement.csproj b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Microsoft.Azure.Management.ApiManagement.csproj index 633b2aca9af4..ef9e9ccf51a3 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Microsoft.Azure.Management.ApiManagement.csproj +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Microsoft.Azure.Management.ApiManagement.csproj @@ -8,7 +8,7 @@ Provides ApiManagement management capabilities for Microsoft Azure. Microsoft Azure API Management Management Microsoft.Azure.Management.ApiManagement - 4.11.0-preview + 4.12.0-preview Microsoft Azure ApiManagement management;API Management; Refer https://aka.ms/apimdotnetsdkchangelog for release notes. diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Properties/AssemblyInfo.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Properties/AssemblyInfo.cs index e13fe303faf4..74f39b1f96c7 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Properties/AssemblyInfo.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/src/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyDescription("Provides Api management capabilities for Microsoft Azure.")] [assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.11.0.0")] +[assembly: AssemblyFileVersion("4.12.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/Helpers/Extensions.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/Helpers/Extensions.cs index 6e858e606b69..04d4348d0d36 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/Helpers/Extensions.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/Helpers/Extensions.cs @@ -45,5 +45,15 @@ public static IEnumerable ToIEnumerable(this IEnumerator enumerator) yield return enumerator.Current; } } + + public static string ToLowerAndRemoveWhiteSpaces(this string candidate) + { + if (string.IsNullOrEmpty(candidate)) + { + return candidate; + } + + return candidate.Replace(" ", string.Empty).ToLowerInvariant(); + } } } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiDiagnosticTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiDiagnosticTests.cs index fed4fd969207..1884732e1e61 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiDiagnosticTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiDiagnosticTests.cs @@ -18,6 +18,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class ApiDiagnosticTests : TestBase { [Fact] + [Trait("owner", "glfeokti")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiExportImportTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiExportImportTests.cs index 0695183d7721..7862977eb1c2 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiExportImportTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiExportImportTests.cs @@ -15,6 +15,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class ApiExportImportTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public void SwaggerTest() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -76,6 +77,7 @@ public void SwaggerTest() } [Fact] + [Trait("owner", "vifedo")] public void WadlTest() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -139,6 +141,7 @@ public void WadlTest() } [Fact] + [Trait("owner", "vifedo")] public void WsdlTest() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -224,6 +227,7 @@ public void WsdlTest() } [Fact] + [Trait("owner", "vifedo")] public void OpenApiTest() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -283,5 +287,66 @@ public void OpenApiTest() } } + + [Fact] + public void OpenApiInJsonTest() + { + Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); + using (MockContext context = MockContext.Start(this.GetType())) + { + var testBase = new ApiManagementTestBase(context); + testBase.TryCreateApiManagementService(); + + const string openapiFilePath = "./Resources/petstoreOpenApi.json"; + const string path = "openapi4"; + string openApiId = TestUtilities.GenerateName("aid"); + + try + { + // import API + string openApiContent; + using (StreamReader reader = File.OpenText(openapiFilePath)) + { + openApiContent = reader.ReadToEnd(); + } + + var apiCreateOrUpdate = new ApiCreateOrUpdateParameter() + { + Path = path, + Format = ContentFormat.Openapijson, + Value = openApiContent + }; + + var swaggerApiResponse = testBase.client.Api.CreateOrUpdate( + testBase.rgName, + testBase.serviceName, + openApiId, + apiCreateOrUpdate); + + Assert.NotNull(swaggerApiResponse); + + // get the api to check it was created + var getResponse = testBase.client.Api.Get(testBase.rgName, testBase.serviceName, openApiId); + + Assert.NotNull(getResponse); + Assert.Equal(openApiId, getResponse.Name); + Assert.Equal(path, getResponse.Path); + Assert.Equal("Swagger Petstore", getResponse.DisplayName); + Assert.Equal("http://petstore.swagger.io/v2", getResponse.ServiceUrl); + + ApiExportResult openApiExport = testBase.client.ApiExport.Get(testBase.rgName, testBase.serviceName, openApiId, ExportFormat.Openapi); + + Assert.NotNull(openApiExport); + Assert.NotNull(openApiExport.Value.Link); + Assert.Equal("openapi-link", openApiExport.ExportResultFormat); + } + finally + { + // remove the API + testBase.client.Api.Delete(testBase.rgName, testBase.serviceName, openApiId, "*"); + } + + } + } } } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiOperationTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiOperationTests.cs index c6e62adaedc7..bb829444e41a 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiOperationTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiOperationTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class ApiOperationTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiProductTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiProductTests.cs index b39401ae0dd6..2477c3d5caed 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiProductTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiProductTests.cs @@ -16,6 +16,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class ApiProductTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiRevisionTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiRevisionTests.cs index b4dfbd3aa815..414f32cad663 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiRevisionTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiRevisionTests.cs @@ -20,6 +20,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class ApiRevisionTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiSchemaTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiSchemaTests.cs index 75e4dd3494eb..df4ee17003e3 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiSchemaTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiSchemaTests.cs @@ -102,6 +102,7 @@ public class ApiSchemaTests : TestBase [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDeleteSwaggerSchema() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); 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 dc10b543f85e..61f293ff7ce8 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiTests.cs @@ -19,6 +19,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class ApiTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -341,6 +342,7 @@ public async Task CreateListUpdateDelete() } [Fact] + [Trait("owner", "vifedo")] public async Task CloneApiUsingSourceApiId() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiVersionSetTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiVersionSetTests.cs index 5be19f91a1ac..fb8334fe0aca 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiVersionSetTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiVersionSetTests.cs @@ -16,6 +16,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class ApiVersionSetTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); 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 d4be12f31f6d..a13cff7be191 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/AuthorizationServerTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/AuthorizationServerTests.cs @@ -18,6 +18,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class AuthorizationServerTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/BackendTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/BackendTests.cs index c11b3e274e85..22f28204784f 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/BackendTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/BackendTests.cs @@ -19,6 +19,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class BackendTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -174,8 +175,9 @@ public async Task ServiceFabricCreateUpdateDelete() string backendName = TestUtilities.GenerateName("backendName"); string urlParameter = new UriBuilder("https", backendName, 443).Uri.ToString(); + string servicefabricUrl = "fabric:/mytestapp/mytestservice"; - var backendCreateParameters = new BackendContract(urlParameter, BackendProtocol.Http); + var backendCreateParameters = new BackendContract(servicefabricUrl, BackendProtocol.Http); backendCreateParameters.Description = TestUtilities.GenerateName("description"); backendCreateParameters.Properties = new BackendProperties(); backendCreateParameters.Properties.ServiceFabricCluster = new BackendServiceFabricClusterProperties(); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/CacheTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/CacheTests.cs index e0909093bf04..05f3349d659d 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/CacheTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/CacheTests.cs @@ -15,6 +15,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class CacheTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/CertificateTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/CertificateTests.cs index a868bfb64cf8..53eae2ccff20 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/CertificateTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/CertificateTests.cs @@ -16,6 +16,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class CertificateTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/DelegationSettingTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/DelegationSettingTests.cs index c889b3cfa673..89b9cc1867ea 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/DelegationSettingTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/DelegationSettingTests.cs @@ -15,6 +15,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class DelegationSettingTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateUpdateReset() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -60,8 +61,6 @@ public async Task CreateUpdateReset() // update the delegation settings portalDelegationSettings.Subscriptions.Enabled = false; portalDelegationSettings.UserRegistration.Enabled = false; - portalDelegationSettings.Url = null; - portalDelegationSettings.ValidationKey = null; await testBase.client.DelegationSettings.UpdateAsync( testBase.rgName, diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/DiagnosticTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/DiagnosticTests.cs index f88b343f1aea..c1c078cef507 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/DiagnosticTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/DiagnosticTests.cs @@ -16,6 +16,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class DiagnosticTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -122,6 +123,8 @@ public async Task CreateListUpdateDelete() Assert.NotNull(updatedDiagnostic.Body.Sampling); Assert.NotNull(updatedDiagnostic.Body.Frontend); Assert.NotNull(updatedDiagnostic.Body.Backend); + Assert.NotNull(updatedDiagnostic.Body.HttpCorrelationProtocol); + Assert.Equal(HttpCorrelationProtocol.Legacy, updatedDiagnostic.Body.HttpCorrelationProtocol); // delete the diagnostic entity await testBase.client.Diagnostic.DeleteAsync( diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/EmailTemplateTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/EmailTemplateTests.cs index c54d57e0e035..419c4b038211 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/EmailTemplateTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/EmailTemplateTests.cs @@ -16,6 +16,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class EmailTemplateTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/GroupTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/GroupTests.cs index f77e931da860..9f12edcbb2dc 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/GroupTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/GroupTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class GroupTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/GroupUserTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/GroupUserTests.cs index 3a4643c61046..6058f48a792c 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/GroupUserTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/GroupUserTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class GroupUserTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/IdentityProviderTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/IdentityProviderTests.cs index 7f242ebe88c4..ec661f43a0c2 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/IdentityProviderTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/IdentityProviderTests.cs @@ -18,6 +18,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class IdentityProviderTests : TestBase { [Fact] + [Trait("owner", "sasolank")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/IssueTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/IssueTests.cs index 075aca5ad2b0..7d393c6a7d71 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/IssueTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/IssueTests.cs @@ -18,6 +18,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class IssueTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/LoggerTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/LoggerTests.cs index 785b666d4d86..fac2ec9ca9bc 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/LoggerTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/LoggerTests.cs @@ -20,6 +20,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class LoggerTests : TestBase { [Fact] + [Trait("owner", "sasolank")] public async Task CreateListUpdateDeleteEventHub() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -181,6 +182,7 @@ public async Task CreateListUpdateDeleteEventHub() } [Fact] + [Trait("owner", "sasolank")] public async Task CreateListUpdateDeleteApplicationInsights() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/NotificationTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/NotificationTests.cs index a2f227fa2380..c65b9824fc98 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/NotificationTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/NotificationTests.cs @@ -15,6 +15,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class NotificationTests : TestBase { [Fact] + [Trait("owner", "sasolank")] public async Task UpdateDeleteRecipientEmail() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -88,6 +89,7 @@ await testBase.client.NotificationRecipientEmail.CheckEntityExistsAsync( } [Fact] + [Trait("owner", "sasolank")] public async Task UpdateDeleteRecipientUser() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); 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 93cfc182477d..2ceb4b3e2338 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/OpenIdConnectProviderTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/OpenIdConnectProviderTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class OpenIdConnectProviderTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PolicyTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PolicyTests.cs index c5212eb9de10..1c7881fad471 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PolicyTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PolicyTests.cs @@ -63,6 +63,7 @@ public class PolicyTests : TestBase "; [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PolicyUriTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PolicyUriTests.cs index cdd9f6b2b972..ea3d6ec8fba1 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PolicyUriTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PolicyUriTests.cs @@ -22,6 +22,7 @@ public class PolicyUriTests : TestBase protected const string ProductValid = "https://raw.githubusercontent.com/Azure/api-management-samples/master/sdkClientResources/ProductPolicy.xml"; [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ProductTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ProductTests.cs index 163cc1940a79..08fd911c6e4e 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ProductTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ProductTests.cs @@ -16,6 +16,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class ProductTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -173,6 +174,7 @@ public async Task CreateListUpdateDelete() } [Fact] + [Trait("owner", "vifedo")] public void ApisListAddRemove() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -254,6 +256,7 @@ public void ApisListAddRemove() } [Fact] + [Trait("owner", "vifedo")] public void GroupsListAddRemove() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -336,6 +339,7 @@ public void GroupsListAddRemove() } [Fact] + [Trait("owner", "vifedo")] public async Task SubscriptionsList() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PropertiesTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PropertiesTests.cs index 624f3c2ad282..06dc527f4400 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PropertiesTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/PropertiesTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class PropertiesTest : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/RegionsTest.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/RegionsTest.cs index 93d50a3172db..6a82f5d64702 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/RegionsTest.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/RegionsTest.cs @@ -15,6 +15,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class RegionTests : TestBase { [Fact] + [Trait("owner", "sasolank")] public async Task List() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ReportTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ReportTests.cs index b27b7d137cef..1149f21f50e6 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ReportTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ReportTests.cs @@ -10,12 +10,15 @@ using System.Linq; using System.Threading.Tasks; using System; +using System.Net.Http; +using System.Globalization; namespace ApiManagement.Tests.ManagementApiTests { public class ReportTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public void Query() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -24,6 +27,17 @@ public void Query() var testBase = new ApiManagementTestBase(context); testBase.TryCreateApiManagementService(); + var service = testBase.client.ApiManagementService.Get(testBase.rgName, testBase.serviceName); + Assert.NotNull(service); + + var subscriptionList = testBase.client.Subscription.List( + testBase.rgName, + testBase.serviceName, + new Microsoft.Rest.Azure.OData.ODataQuery { Top = 1 }); + Assert.NotNull(subscriptionList); + + MakeAnalyticRequests(service.GatewayUrl, subscriptionList.First().PrimaryKey); + var byApiResponse = testBase.client.Reports.ListByApi( new Microsoft.Rest.Azure.OData.ODataQuery { @@ -123,5 +137,31 @@ public void Query() Assert.NotNull(byRequestResponse.First().ProductId); } } + + void MakeAnalyticRequests(string proxyUrl, string subscriptionKey) + { + var httpClient = new HttpClient + { + BaseAddress = new Uri(proxyUrl) + }; + int requests = 10; + while (requests-- > 0) + { + try + { + var response = httpClient.GetAsync( + string.Format(CultureInfo.InvariantCulture, "echo/resource?key={0}", subscriptionKey)) + .GetAwaiter() + .GetResult(); + response.EnsureSuccessStatusCode(); + } + catch (Exception ex) + { + Console.WriteLine(ex); + } + + Task.Delay(TimeSpan.FromSeconds(10)).GetAwaiter().GetResult(); + } + } } } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SignInSettingTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SignInSettingTests.cs index e7b2f908cad3..bf10f446285b 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SignInSettingTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SignInSettingTests.cs @@ -14,6 +14,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class SignInSettingTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateUpdateReset() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SignUpSettingTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SignUpSettingTests.cs index c39ce08468f5..661c0954314c 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SignUpSettingTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SignUpSettingTests.cs @@ -15,6 +15,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class SignUpSettingTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateUpdateReset() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SubscriptionTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SubscriptionTests.cs index 4a3b12b355d1..6c7dab742003 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SubscriptionTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/SubscriptionTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class SubscriptionTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TagDescriptionTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TagDescriptionTests.cs index 5aa113333668..5b6b92e98216 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TagDescriptionTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TagDescriptionTests.cs @@ -16,6 +16,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class TagDescriptionTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TagTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TagTests.cs index 036cc5065c31..c50da61a37ce 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TagTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TagTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class TagTest : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDeleteApiTags() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -160,6 +161,7 @@ await testBase.client.Tag.DeleteAsync( } [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDeleteProductTags() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -293,6 +295,7 @@ await testBase.client.Tag.DeleteAsync( } [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDeleteOperationTags() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantAccessGitTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantAccessGitTests.cs index 9136b99beef6..dfa777e7602d 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantAccessGitTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantAccessGitTests.cs @@ -14,6 +14,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class TenantAccessGitTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task GetUpdateKeys() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantAccessTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantAccessTests.cs index adf3c602c7a2..57527c43147d 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantAccessTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantAccessTests.cs @@ -15,6 +15,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class TenantAccessTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task EnableGetAndUpdateKeys() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantGitTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantGitTests.cs index e99807520fea..884a931ca9a9 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantGitTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/TenantGitTests.cs @@ -15,6 +15,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class TenantGitTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task ValidateSaveDeploy() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/UserTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/UserTests.cs index 696a58dc7645..837c3d587ae8 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/UserTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/UserTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ManagementApiTests public class UserTests : TestBase { [Fact] + [Trait("owner", "vifedo")] public async Task CreateListUpdateDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -143,6 +144,7 @@ public async Task CreateListUpdateDelete() } [Fact] + [Trait("owner", "vifedo")] public void UserIdentities() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -180,6 +182,7 @@ public void UserIdentities() } [Fact] + [Trait("owner", "vifedo")] public void GroupsListAddRemove() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -305,6 +308,7 @@ public void GroupsListAddRemove() } [Fact] + [Trait("owner", "vifedo")] public void SubscriptionsList() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/BackupRestoreTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/BackupRestoreTests.cs index 60d0a480f305..45eadc8cbacf 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/BackupRestoreTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/BackupRestoreTests.cs @@ -18,6 +18,7 @@ namespace ApiManagement.Tests.ResourceProviderTests public partial class ApiManagementServiceTests { [Fact] + [Trait("owner", "sasolank")] public void BackupAndRestoreService() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateInVirtualNetworkTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateInVirtualNetworkTests.cs index 292566af825c..1b25a93c1642 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateInVirtualNetworkTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateInVirtualNetworkTests.cs @@ -15,12 +15,14 @@ using System; using System.Linq; using System.Threading.Tasks; +using ApiManagementManagement.Tests.Helpers; namespace ApiManagement.Tests.ResourceProviderTests { public partial class ApiManagementServiceTests { [Fact] + [Trait("owner", "sasolank")] public async Task CreateInVirtualNetworkTests() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -106,7 +108,7 @@ public async Task CreateInVirtualNetworkTests() testBase.serviceName); Assert.NotNull(serviceNetworkStatus); Assert.Single(serviceNetworkStatus); - Assert.Equal(testBase.location, serviceNetworkStatus.First().Location); + Assert.Equal(testBase.location.ToLowerAndRemoveWhiteSpaces(), serviceNetworkStatus.First().Location.ToLowerAndRemoveWhiteSpaces()); Assert.NotNull(serviceNetworkStatus.First().NetworkStatus.ConnectivityStatus); Assert.NotNull(serviceNetworkStatus.First().NetworkStatus.DnsServers); Assert.Equal("success", serviceNetworkStatus.First().NetworkStatus.ConnectivityStatus.First().Status, true); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateListDeleteTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateListDeleteTests.cs index 990abc5dd501..b41cb17f414a 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateListDeleteTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateListDeleteTests.cs @@ -17,6 +17,7 @@ namespace ApiManagement.Tests.ResourceProviderTests public partial class ApiManagementServiceTests { [Fact] + [Trait("owner", "kjoshi")] public void CreateListDelete() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -55,7 +56,7 @@ public void CreateListDelete() resourceGroupName: testBase.rgName); Assert.NotNull(listServiceResponse); - Assert.True(listServiceResponse.Any()); + Assert.True(listServiceResponse.Any(), $"Service in rg {testBase.rgName} does not exist"); var serviceResponse = listServiceResponse.FirstOrDefault(); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateMultiHostNameService.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateMultiHostNameService.cs index 50c642d5d1d8..c626f83b8ac8 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateMultiHostNameService.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateMultiHostNameService.cs @@ -19,6 +19,7 @@ namespace ApiManagement.Tests.ResourceProviderTests public partial class ApiManagementServiceTests { [Fact] + [Trait("owner", "sasolank")] public void CreateMultiHostNameService() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); @@ -53,11 +54,20 @@ public void CreateMultiHostNameService() CertificatePassword = testBase.testCertificatePassword }; + var hostnameConfig4 = new HostnameConfiguration() + { + Type = HostnameType.DeveloperPortal, + HostName = "devportal1.msitesting.net", + EncodedCertificate = testBase.base64EncodedTestCertificateData, + CertificatePassword = testBase.testCertificatePassword + }; + testBase.serviceProperties.HostnameConfigurations = new List { hostnameConfig1, hostnameConfig2, - hostnameConfig3 + hostnameConfig3, + hostnameConfig4 }; var base64ArrayCertificate = Convert.FromBase64String(testBase.base64EncodedTestCertificateData); @@ -79,7 +89,7 @@ public void CreateMultiHostNameService() testBase.tags); Assert.NotNull(createdService.HostnameConfigurations); - Assert.Equal(4, createdService.HostnameConfigurations.Count()); // customhostname config + 1 default proxy + Assert.Equal(5, createdService.HostnameConfigurations.Count()); // customhostname config + 1 default proxy var defaultHostname = new Uri(createdService.GatewayUrl).Host; var hostnameConfigurationToValidate = createdService.HostnameConfigurations .Where(h => !h.HostName.Equals(defaultHostname, StringComparison.InvariantCultureIgnoreCase)); @@ -122,7 +132,7 @@ public void CreateMultiHostNameService() Assert.NotNull(updatedService); Assert.NotEmpty(updatedService.Tags); Assert.Equal(intialTagsCount + 1, updatedService.Tags.Count); - Assert.Equal(4, updatedService.HostnameConfigurations.Count()); + Assert.Equal(5, updatedService.HostnameConfigurations.Count()); hostnameConfigurationToValidate = updatedService.HostnameConfigurations .Where(h => !h.HostName.Equals(defaultHostname, StringComparison.InvariantCultureIgnoreCase)); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateMultiRegionService.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateMultiRegionService.cs index 342d24302115..c08e9a805d04 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateMultiRegionService.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/CreateMultiRegionService.cs @@ -18,6 +18,7 @@ namespace ApiManagement.Tests.ResourceProviderTests public partial class ApiManagementServiceTests { [Fact] + [Trait("owner", "sasolank")] public void CreateMultiRegionService() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/InstallIntermediateCertificatesTest.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/InstallIntermediateCertificatesTest.cs index e7b46a07954b..ae6b792684e8 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/InstallIntermediateCertificatesTest.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/InstallIntermediateCertificatesTest.cs @@ -19,6 +19,7 @@ namespace ApiManagement.Tests.ResourceProviderTests public partial class ApiManagementServiceTests { [Fact] + [Trait("owner", "sasolank")] public void InstallIntermediateCertificatesTest() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/ResourceProviderTestBase.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/ResourceProviderTestBase.cs index d54e37ec0521..e4191d78c783 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/ResourceProviderTestBase.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/ResourceProviderTestBase.cs @@ -40,6 +40,7 @@ private void ValidateService( { Assert.NotNull(service.PortalUrl); Assert.NotNull(service.ManagementApiUrl); + Assert.NotNull(service.DeveloperPortalUrl); Assert.NotNull(service.ScmUrl); Assert.NotNull(service.PublicIPAddresses); } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/SetupMsiTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/SetupMsiTests.cs index 910bcec9abac..5bf768497496 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/SetupMsiTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ResourceProviderTests/SetupMsiTests.cs @@ -16,6 +16,7 @@ namespace ApiManagement.Tests.ResourceProviderTests public partial class ApiManagementServiceTests { [Fact] + [Trait("owner", "sasolank")] public void SetupMsiTests() { Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/Resources/petstoreOpenApi.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/Resources/petstoreOpenApi.json new file mode 100644 index 000000000000..3ee1ba35b15b --- /dev/null +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/Resources/petstoreOpenApi.json @@ -0,0 +1,1064 @@ +{ + "openapi": "3.0.0", + "servers": [ + { + "url": "http://petstore.swagger.io/v2" + } + ], + "info": { + "description": ":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.", + "version": "1.0.0", + "title": "Swagger Petstore", + "termsOfService": "http://swagger.io/terms/", + "contact": { + "email": "apiteam@swagger.io" + }, + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + }, + "tags": [ + { + "name": "pet", + "description": "Everything about your Pets", + "externalDocs": { + "description": "Find out more", + "url": "http://swagger.io" + } + }, + { + "name": "store", + "description": "Access to Petstore orders" + }, + { + "name": "user", + "description": "Operations about user", + "externalDocs": { + "description": "Find out more about our store", + "url": "http://swagger.io" + } + } + ], + "paths": { + "/pet": { + "post": { + "tags": [ + "pet" + ], + "summary": "Add a new pet to the store", + "description": "", + "operationId": "addPet", + "responses": { + "405": { + "description": "Invalid input" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/Pet" + }, + "parameters": [] + }, + "put": { + "tags": [ + "pet" + ], + "summary": "Update an existing pet", + "description": "", + "operationId": "updatePet", + "responses": { + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Pet not found" + }, + "405": { + "description": "Validation exception" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/Pet" + }, + "parameters": [] + } + }, + "/pet/findByStatus": { + "get": { + "tags": [ + "pet" + ], + "summary": "Finds Pets by status", + "description": "Multiple status values can be provided with comma separated strings", + "operationId": "findPetsByStatus", + "parameters": [ + { + "name": "status", + "in": "query", + "description": "Status values that need to be considered for filter", + "required": true, + "explode": true, + "schema": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "available", + "pending", + "sold" + ], + "default": "available" + } + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Pet" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Pet" + } + } + } + } + }, + "400": { + "description": "Invalid status value" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ] + } + }, + "/pet/findByTags": { + "get": { + "tags": [ + "pet" + ], + "summary": "Finds Pets by tags", + "description": "Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.", + "operationId": "findPetsByTags", + "parameters": [ + { + "name": "tags", + "in": "query", + "description": "Tags to filter by", + "required": true, + "explode": true, + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Pet" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Pet" + } + } + } + } + }, + "400": { + "description": "Invalid tag value" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "deprecated": true + } + }, + "/pet/{petId}": { + "get": { + "tags": [ + "pet" + ], + "summary": "Find pet by ID", + "description": "Returns a single pet", + "operationId": "getPetById", + "parameters": [ + { + "name": "petId", + "in": "path", + "description": "ID of pet to return", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/Pet" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/Pet" + } + } + } + }, + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Pet not found" + } + }, + "security": [ + { + "api_key": [] + } + ] + }, + "post": { + "tags": [ + "pet" + ], + "summary": "Updates a pet in the store with form data", + "description": "", + "operationId": "updatePetWithForm", + "parameters": [ + { + "name": "petId", + "in": "path", + "description": "ID of pet that needs to be updated", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "405": { + "description": "Invalid input" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "requestBody": { + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Updated name of the pet", + "type": "string" + }, + "status": { + "description": "Updated status of the pet", + "type": "string" + } + } + } + } + } + } + }, + "delete": { + "tags": [ + "pet" + ], + "summary": "Deletes a pet", + "description": "", + "operationId": "deletePet", + "parameters": [ + { + "name": "api_key", + "in": "header", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "petId", + "in": "path", + "description": "Pet id to delete", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Pet not found" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ] + } + }, + "/pet/{petId}/uploadImage": { + "post": { + "tags": [ + "pet" + ], + "summary": "uploads an image", + "description": "", + "operationId": "uploadFile", + "parameters": [ + { + "name": "petId", + "in": "path", + "description": "ID of pet to update", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApiResponse" + } + } + } + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "requestBody": { + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + }, + "/store/inventory": { + "get": { + "tags": [ + "store" + ], + "summary": "Returns pet inventories by status", + "description": "Returns a map of status codes to quantities", + "operationId": "getInventory", + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "integer", + "format": "int32" + } + } + } + } + } + }, + "security": [ + { + "api_key": [] + } + ], + "parameters": [] + } + }, + "/store/order": { + "post": { + "tags": [ + "store" + ], + "summary": "Place an order for a pet", + "description": "", + "operationId": "placeOrder", + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/Order" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/Order" + } + } + } + }, + "400": { + "description": "Invalid Order" + } + }, + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Order" + } + } + }, + "description": "order placed for purchasing the pet", + "required": true + }, + "parameters": [] + } + }, + "/store/order/{orderId}": { + "get": { + "tags": [ + "store" + ], + "summary": "Find purchase order by ID", + "description": "For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions", + "operationId": "getOrderById", + "parameters": [ + { + "name": "orderId", + "in": "path", + "description": "ID of pet that needs to be fetched", + "required": true, + "schema": { + "type": "integer", + "format": "int64", + "minimum": 1, + "maximum": 10 + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/Order" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/Order" + } + } + } + }, + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Order not found" + } + } + }, + "delete": { + "tags": [ + "store" + ], + "summary": "Delete purchase order by ID", + "description": "For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors", + "operationId": "deleteOrder", + "parameters": [ + { + "name": "orderId", + "in": "path", + "description": "ID of the order that needs to be deleted", + "required": true, + "schema": { + "type": "integer", + "format": "int64", + "minimum": 1 + } + } + ], + "responses": { + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Order not found" + } + } + } + }, + "/user": { + "post": { + "tags": [ + "user" + ], + "summary": "Create user", + "description": "This can only be done by the logged in user.", + "operationId": "createUser", + "responses": { + "default": { + "description": "successful operation" + } + }, + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + }, + "description": "Created user object", + "required": true + }, + "parameters": [] + } + }, + "/user/createWithArray": { + "post": { + "tags": [ + "user" + ], + "summary": "Creates list of users with given input array", + "description": "", + "operationId": "createUsersWithArrayInput", + "responses": { + "default": { + "description": "successful operation" + } + }, + "requestBody": { + "$ref": "#/components/requestBodies/UserArray" + }, + "parameters": [] + } + }, + "/user/createWithList": { + "post": { + "tags": [ + "user" + ], + "summary": "Creates list of users with given input array", + "description": "", + "operationId": "createUsersWithListInput", + "responses": { + "default": { + "description": "successful operation" + } + }, + "requestBody": { + "$ref": "#/components/requestBodies/UserArray" + }, + "parameters": [] + } + }, + "/user/login": { + "get": { + "tags": [ + "user" + ], + "summary": "Logs user into the system", + "description": "", + "operationId": "loginUser", + "parameters": [ + { + "name": "username", + "in": "query", + "description": "The user name for login", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "password", + "in": "query", + "description": "The password for login in clear text", + "required": true, + "schema": { + "type": "string", + "format": "password" + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "headers": { + "X-Rate-Limit": { + "description": "calls per hour allowed by the user", + "schema": { + "type": "integer", + "format": "int32" + } + }, + "X-Expires-After": { + "description": "date in UTC when token expires", + "schema": { + "type": "string", + "format": "date-time" + } + } + }, + "content": { + "application/xml": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "400": { + "description": "Invalid username/password supplied" + } + } + } + }, + "/user/logout": { + "get": { + "tags": [ + "user" + ], + "summary": "Logs out current logged in user session", + "description": "", + "operationId": "logoutUser", + "responses": { + "default": { + "description": "successful operation" + } + }, + "parameters": [] + } + }, + "/user/{username}": { + "get": { + "tags": [ + "user" + ], + "summary": "Get user by user name", + "description": "", + "operationId": "getUserByName", + "parameters": [ + { + "name": "username", + "in": "path", + "description": "The name that needs to be fetched. Use user1 for testing. ", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/User" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "400": { + "description": "Invalid username supplied" + }, + "404": { + "description": "User not found" + } + } + }, + "put": { + "tags": [ + "user" + ], + "summary": "Updated user", + "description": "This can only be done by the logged in user.", + "operationId": "updateUser", + "parameters": [ + { + "name": "username", + "in": "path", + "description": "name that need to be updated", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "400": { + "description": "Invalid user supplied" + }, + "404": { + "description": "User not found" + } + }, + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + }, + "description": "Updated user object", + "required": true + } + }, + "delete": { + "tags": [ + "user" + ], + "summary": "Delete user", + "description": "This can only be done by the logged in user.", + "operationId": "deleteUser", + "parameters": [ + { + "name": "username", + "in": "path", + "description": "The name that needs to be deleted", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "400": { + "description": "Invalid username supplied" + }, + "404": { + "description": "User not found" + } + } + } + } + }, + "externalDocs": { + "description": "See AsyncAPI example", + "url": "https://mermade.github.io/shins/asyncapi.html" + }, + "components": { + "schemas": { + "Order": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "petId": { + "type": "integer", + "format": "int64" + }, + "quantity": { + "type": "integer", + "format": "int32" + }, + "shipDate": { + "type": "string", + "format": "date-time" + }, + "status": { + "type": "string", + "description": "Order Status", + "enum": [ + "placed", + "approved", + "delivered" + ] + }, + "complete": { + "type": "boolean", + "default": false + } + }, + "xml": { + "name": "Order" + } + }, + "Category": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "name": { + "type": "string" + } + }, + "xml": { + "name": "Category" + } + }, + "User": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "username": { + "type": "string" + }, + "firstName": { + "type": "string" + }, + "lastName": { + "type": "string" + }, + "email": { + "type": "string" + }, + "password": { + "type": "string" + }, + "phone": { + "type": "string" + }, + "userStatus": { + "type": "integer", + "format": "int32", + "description": "User Status" + } + }, + "xml": { + "name": "User" + } + }, + "Tag": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "name": { + "type": "string" + } + }, + "xml": { + "name": "Tag" + } + }, + "Pet": { + "type": "object", + "required": [ + "name", + "photoUrls" + ], + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "category": { + "$ref": "#/components/schemas/Category" + }, + "name": { + "type": "string", + "example": "doggie" + }, + "photoUrls": { + "type": "array", + "xml": { + "name": "photoUrl", + "wrapped": true + }, + "items": { + "type": "string" + } + }, + "tags": { + "type": "array", + "xml": { + "name": "tag", + "wrapped": true + }, + "items": { + "$ref": "#/components/schemas/Tag" + } + }, + "status": { + "type": "string", + "description": "pet status in the store", + "enum": [ + "available", + "pending", + "sold" + ] + } + }, + "xml": { + "name": "Pet" + } + }, + "ApiResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer", + "format": "int32" + }, + "type": { + "type": "string" + }, + "message": { + "type": "string" + } + } + } + }, + "requestBodies": { + "Pet": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Pet" + } + }, + "application/xml": { + "schema": { + "$ref": "#/components/schemas/Pet" + } + } + }, + "description": "Pet object that needs to be added to the store", + "required": true + }, + "UserArray": { + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "description": "List of user object", + "required": true + } + }, + "securitySchemes": { + "petstore_auth": { + "type": "oauth2", + "flows": { + "implicit": { + "authorizationUrl": "http://petstore.swagger.io/oauth/dialog", + "scopes": { + "write:pets": "modify pets in your account", + "read:pets": "read your pets" + } + } + } + }, + "api_key": { + "type": "apiKey", + "name": "api_key", + "in": "header" + } + }, + "links": {}, + "callbacks": {} + }, + "security": [] +} \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiDiagnosticTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiDiagnosticTests/CreateListUpdateDelete.json index 67d26312e15a..9cb0a79e4d1e 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiDiagnosticTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiDiagnosticTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "93ee1cce-72f8-4a66-a882-14a12fe99df8" + "f24dbd4a-9a51-4000-b5d7-e448e8cc2be8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:41 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c4d540f-8515-4012-a47e-7fb6565c52ae", - "b988895d-4566-415e-a1d3-2d668ecd510b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c4a70cda-08d4-4ed1-8cc0-9f1ec3620423", + "cde382ba-bf80-454f-a1e8-5ad1d22a4ab8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "e1a52196-1d88-4771-965e-fd09656bb40d" + "3fd94000-6167-4e58-a1a8-852ff4ca75a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020927Z:e1a52196-1d88-4771-965e-fd09656bb40d" + "WESTUS:20200207T005242Z:3fd94000-6167-4e58-a1a8-852ff4ca75a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:27 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87887062-d838-4996-b0d0-2db5e1567807" + "f665510e-52fb-4a92-8974-253ca601c069" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:41 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22d984ad-08cc-4eeb-baf6-85ca67b05ae7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a13fcca4-ad22-4f22-a7f4-4992a68488e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "148df944-decd-4919-9ee8-1aec73bc7ba6" + "f2f0aa28-767e-4f24-a0a9-7f24099b6e9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020927Z:148df944-decd-4919-9ee8-1aec73bc7ba6" + "WESTUS:20200207T005242Z:f2f0aa28-767e-4f24-a0a9-7f24099b6e9e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:27 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97d0da0f-3824-4b91-9a36-ce8cef16907e" + "95b12068-b681-4f8b-a6be-799b1ee4ae30" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:41 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e9efadd-bcd8-4c09-a262-b4883a774a31" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b7f4596e-5f5e-4914-86b8-759b929c975f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "1b6cb522-efb0-465d-87f4-647a87f2c535" + "fe72972c-e973-43df-a81b-b43b0cac1480" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020927Z:1b6cb522-efb0-465d-87f4-647a87f2c535" + "WESTUS:20200207T005242Z:fe72972c-e973-43df-a81b-b43b0cac1480" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:27 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8257058-32dc-405b-9367-0c3146f57ab2" + "1c22b17e-16a2-4029-8b89-48a7d03b7ad7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:42 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e552e29b-4a3a-47de-b632-3490d17733ae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a1434c1a-1127-4095-a30a-2ff96550a105" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "f9492109-ecb5-471d-88af-ca6f04784695" + "b42675c3-00b2-424c-a010-0942b4abe483" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020927Z:f9492109-ecb5-471d-88af-ca6f04784695" + "WESTUS:20200207T005243Z:b42675c3-00b2-424c-a010-0942b4abe483" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:27 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,26 +262,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"9077a65a-e8ff-46a0-93d1-e4ac43ebb7bc\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"344ff8ea-0832-4121-a40c-0066057336dc\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cafe144-eab5-4ea6-bd2c-b935b2b21ef0" + "6a3357a7-75c2-4361-9570-b3162dc8b85d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,38 +294,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:46 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQs=\"" + "\"AAAAAAAACTI=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "833aca87-baf7-463b-a3c5-9aab77262445" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4877cbce-59f9-4420-807f-9b2308b8fea4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "134e6a2a-10be-4f95-8560-e1180c68fb5e" + "1b506228-91b4-4e85-a91a-fea22dc8eb62" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020928Z:134e6a2a-10be-4f95-8560-e1180c68fb5e" + "WESTUS:20200207T005247Z:1b506228-91b4-4e85-a91a-fea22dc8eb62" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:28 GMT" - ], "Content-Length": [ - "518" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,70 +334,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights800\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea1d8b597440f487b0de7}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights2592\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5e3cb4de2393691028e5c5f5}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b345b694-4de6-4d57-b471-8fecf04e1920" + "46fbc51d-e482-4a4c-8ca7-b261bbdd5ff2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "216" + "225" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:47 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQ0=\"" + "\"AAAAAAAACTQ=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d4daaa3-fc7d-4ae5-b38b-0bf72cebeaa1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "743dc1f5-53c6-4d50-a0b1-3c72f5bd3d0f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "ada4abfc-6ce1-4f62-8ef8-c39eda89ddab" + "48a84132-6d41-4f7f-a9d7-6a21fc4e141c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020928Z:ada4abfc-6ce1-4f62-8ef8-c39eda89ddab" + "WESTUS:20200207T005248Z:48a84132-6d41-4f7f-a9d7-6a21fc4e141c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:28 GMT" - ], "Content-Length": [ - "678" + "737" ], "Content-Type": [ "application/json; charset=utf-8" @@ -406,73 +406,73 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": null,\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\",\r\n \"sampling\": null,\r\n \"frontend\": null,\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": null,\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592\",\r\n \"sampling\": null,\r\n \"frontend\": null,\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"enableHttpCorrelationHeaders\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"enableHttpCorrelationHeaders\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "143a82b6-502c-4aab-bef5-1d0f5a245a2b" + "001e3bc9-1e63-4a62-b825-6460a989b1b3" ], "If-Match": [ - "\"AAAAAAAAcQ0=\"" + "\"AAAAAAAACTQ=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1004" + "1013" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:48 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcRE=\"" + "\"AAAAAAAACTc=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80608d95-cc3d-4fad-88c5-a9843bb79b0e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7fed6da6-8767-4f82-ad09-11d8b0f980e7" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "2eb115a9-415b-40a8-b6b1-005f97e80984" + "7e3684cd-5024-407d-8405-9f2c3398b2f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020929Z:2eb115a9-415b-40a8-b6b1-005f97e80984" + "WESTUS:20200207T005249Z:7e3684cd-5024-407d-8405-9f2c3398b2f0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:29 GMT" - ], "Content-Length": [ - "1331" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -481,62 +481,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3d0ceb3-9f91-4d0d-aaeb-aaa35b804a85" + "ac90dddf-a68b-4083-9cb7-f92e5e433949" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:47 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQ0=\"" + "\"AAAAAAAACTQ=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6115ed3-b2d7-436d-aa91-4880569295ec" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3eb06a9c-fd2e-4398-880f-ad81cc486f9e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "2fe62b2b-8ae8-4349-be45-cf0ec117e33c" + "667989f8-b866-42bf-8417-1929353762f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020928Z:2fe62b2b-8ae8-4349-be45-cf0ec117e33c" + "WESTUS:20200207T005248Z:667989f8-b866-42bf-8417-1929353762f1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:28 GMT" - ], "Content-Length": [ "0" ], @@ -548,55 +548,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a301b28-7d33-4aff-97dd-d29ecd843bc5" + "fb1cb150-06f8-4623-8a03-32d746bb073b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:49 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86de8537-3030-4562-8ca3-2289bb11c0af" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fa5b3107-4fd2-40e2-b989-a6b42b274913" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "8b29af19-f72b-4ea2-acbc-3c49c1ec178e" + "49880b36-38c2-4e04-a277-20f7244e5fd7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020929Z:8b29af19-f72b-4ea2-acbc-3c49c1ec178e" + "WESTUS:20200207T005250Z:49880b36-38c2-4e04-a277-20f7244e5fd7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:29 GMT" - ], "Content-Length": [ "0" ], @@ -608,121 +608,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37ee64c6-9c8f-4956-873b-095db9be6b46" + "83d0066f-6016-4228-bf65-7538816f8f49" ], "If-Match": [ - "\"AAAAAAAAcRE=\"" + "\"AAAAAAAACTc=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:49 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a926a710-e5c4-4573-9bf7-7378ec1e474c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5a2c2c39-10cf-4758-aa6b-9bf5e67f74ec" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "d4151e0c-78c3-4690-9649-e0183f4cec4e" + "cba40596-1588-4d7f-b5aa-c856fe95312a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020929Z:d4151e0c-78c3-4690-9649-e0183f4cec4e" + "WESTUS:20200207T005250Z:cba40596-1588-4d7f-b5aa-c856fe95312a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:29 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa300e46-7675-4566-b3c5-28341eb4f009" + "4b9256a6-6211-42f5-a270-a38e2cd17bba" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2ddc4a7-e99b-43b0-83b8-fb4beb954493" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "77925e5a-b552-484b-9ef9-2018860f684a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "fcf3f3af-19b9-4857-bede-49804060027d" + "17bfc564-f5cc-435a-b99a-9eb70dbfc68d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020930Z:fcf3f3af-19b9-4857-bede-49804060027d" + "WESTUS:20200207T005251Z:17bfc564-f5cc-435a-b99a-9eb70dbfc68d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:30 GMT" - ], "Expires": [ "-1" ] @@ -731,58 +731,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7fde5a9-d969-44cc-a6f2-46a6952c7b5f" + "c5271f98-3e53-4600-a907-1bb07511a8d4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQs=\"" + "\"AAAAAAAACTI=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17d016e4-d0b4-4cd6-a003-d6bc11d63660" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "348a3ebd-c5f2-4997-8116-40f697b7f5f2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-correlation-request-id": [ - "8e8dc1a4-1a57-495a-a67a-9bfe76610146" + "98fcbbfe-561a-4b81-90b1-1b53e126decd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020929Z:8e8dc1a4-1a57-495a-a67a-9bfe76610146" + "WESTUS:20200207T005250Z:98fcbbfe-561a-4b81-90b1-1b53e126decd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:29 GMT" - ], "Content-Length": [ "0" ], @@ -794,55 +794,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35dffb2b-78bc-415d-82e6-3c5b785bcf84" + "bbbb0e4f-eb69-4f92-8049-56225e29d8dc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a16847a-9460-4f96-b83f-ffa42df7652b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "89ea1a11-5ef0-4b41-80ca-a67c944cb5b2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-correlation-request-id": [ - "a0818704-fa54-47a7-a204-6cad53f28c98" + "7e9bfe00-13b0-48b0-ac7a-46106fbddc87" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020930Z:a0818704-fa54-47a7-a204-6cad53f28c98" + "WESTUS:20200207T005251Z:7e9bfe00-13b0-48b0-ac7a-46106fbddc87" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:30 GMT" - ], "Content-Length": [ "0" ], @@ -854,121 +854,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14826abe-80c1-4ca6-b481-8e3255784d89" + "eca14802-bd2e-4197-bac4-c36700c385e2" ], "If-Match": [ - "\"AAAAAAAAcQs=\"" + "\"AAAAAAAACTI=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7aa534a7-2f21-4420-81aa-aa3f1bba3729" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e9a81290-08b2-4e25-9eb4-7a47a3d0b891" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14998" ], "x-ms-correlation-request-id": [ - "57772163-53f8-4eb2-9a67-35000bb1718f" + "9c20dc49-524c-4fa0-a24f-2feba3d369fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020930Z:57772163-53f8-4eb2-9a67-35000bb1718f" + "WESTUS:20200207T005251Z:9c20dc49-524c-4fa0-a24f-2feba3d369fe" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:29 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8df4c9e-7b5e-4c99-8329-b300a486f5d8" + "93f9f292-b9a0-4249-9665-144550c1d1ae" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88d4610c-f32a-43f0-af37-d2ef59f91b6a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5c72dd16-e828-4ec4-8636-8e88cf8077f3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "a9c2077b-1efa-41e7-bd70-50c5c1275120" + "e4f19f70-b0d3-49dd-83ae-32233a9d2099" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020930Z:a9c2077b-1efa-41e7-bd70-50c5c1275120" + "WESTUS:20200207T005251Z:e4f19f70-b0d3-49dd-83ae-32233a9d2099" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:30 GMT" - ], "Expires": [ "-1" ] @@ -979,10 +979,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "appInsights800" + "appInsights2592" ], "appInsights": [ - "9077a65a-e8ff-46a0-93d1-e4ac43ebb7bc" + "344ff8ea-0832-4121-a40c-0066057336dc" ] }, "Variables": { @@ -990,7 +990,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/OpenApiInJsonTest.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/OpenApiInJsonTest.json new file mode 100644 index 000000000000..bcd7c8bf93bf --- /dev/null +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/OpenApiInJsonTest.json @@ -0,0 +1,481 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "427e2d9c-3691-411b-bbee-b826b593cf11" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "289" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:23:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "af331e09-9ce0-4e51-a809-5c940b59db24", + "a3a3f6f3-ded0-4ddf-bb2c-2cb3532e93de" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "710b6d36-b5df-476f-815e-0ddcc688d01b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T012330Z:710b6d36-b5df-476f-815e-0ddcc688d01b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcb50016-68e2-4b18-9ff2-0e07327ffb5f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:23:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "10d5ff92-2e12-4d6f-b2e2-8653cc4e2edd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "87f91d37-2a2d-46f4-8d97-4d4b73ec7348" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T012330Z:87f91d37-2a2d-46f4-8d97-4d4b73ec7348" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkODc3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapi4\",\r\n \"value\": \"{\\n \\\"openapi\\\": \\\"3.0.0\\\",\\n \\\"servers\\\": [\\n {\\n \\\"url\\\": \\\"http://petstore.swagger.io/v2\\\"\\n }\\n ],\\n \\\"info\\\": {\\n \\\"description\\\": \\\":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\\\",\\n \\\"version\\\": \\\"1.0.0\\\",\\n \\\"title\\\": \\\"Swagger Petstore\\\",\\n \\\"termsOfService\\\": \\\"http://swagger.io/terms/\\\",\\n \\\"contact\\\": {\\n \\\"email\\\": \\\"apiteam@swagger.io\\\"\\n },\\n \\\"license\\\": {\\n \\\"name\\\": \\\"Apache 2.0\\\",\\n \\\"url\\\": \\\"http://www.apache.org/licenses/LICENSE-2.0.html\\\"\\n }\\n },\\n \\\"tags\\\": [\\n {\\n \\\"name\\\": \\\"pet\\\",\\n \\\"description\\\": \\\"Everything about your Pets\\\",\\n \\\"externalDocs\\\": {\\n \\\"description\\\": \\\"Find out more\\\",\\n \\\"url\\\": \\\"http://swagger.io\\\"\\n }\\n },\\n {\\n \\\"name\\\": \\\"store\\\",\\n \\\"description\\\": \\\"Access to Petstore orders\\\"\\n },\\n {\\n \\\"name\\\": \\\"user\\\",\\n \\\"description\\\": \\\"Operations about user\\\",\\n \\\"externalDocs\\\": {\\n \\\"description\\\": \\\"Find out more about our store\\\",\\n \\\"url\\\": \\\"http://swagger.io\\\"\\n }\\n }\\n ],\\n \\\"paths\\\": {\\n \\\"/pet\\\": {\\n \\\"post\\\": {\\n \\\"tags\\\": [\\n \\\"pet\\\"\\n ],\\n \\\"summary\\\": \\\"Add a new pet to the store\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"addPet\\\",\\n \\\"responses\\\": {\\n \\\"405\\\": {\\n \\\"description\\\": \\\"Invalid input\\\"\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"petstore_auth\\\": [\\n \\\"write:pets\\\",\\n \\\"read:pets\\\"\\n ]\\n }\\n ],\\n \\\"requestBody\\\": {\\n \\\"$ref\\\": \\\"#/components/requestBodies/Pet\\\"\\n },\\n \\\"parameters\\\": []\\n },\\n \\\"put\\\": {\\n \\\"tags\\\": [\\n \\\"pet\\\"\\n ],\\n \\\"summary\\\": \\\"Update an existing pet\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"updatePet\\\",\\n \\\"responses\\\": {\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\n },\\n \\\"404\\\": {\\n \\\"description\\\": \\\"Pet not found\\\"\\n },\\n \\\"405\\\": {\\n \\\"description\\\": \\\"Validation exception\\\"\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"petstore_auth\\\": [\\n \\\"write:pets\\\",\\n \\\"read:pets\\\"\\n ]\\n }\\n ],\\n \\\"requestBody\\\": {\\n \\\"$ref\\\": \\\"#/components/requestBodies/Pet\\\"\\n },\\n \\\"parameters\\\": []\\n }\\n },\\n \\\"/pet/findByStatus\\\": {\\n \\\"get\\\": {\\n \\\"tags\\\": [\\n \\\"pet\\\"\\n ],\\n \\\"summary\\\": \\\"Finds Pets by status\\\",\\n \\\"description\\\": \\\"Multiple status values can be provided with comma separated strings\\\",\\n \\\"operationId\\\": \\\"findPetsByStatus\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"status\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"Status values that need to be considered for filter\\\",\\n \\\"required\\\": true,\\n \\\"explode\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"enum\\\": [\\n \\\"available\\\",\\n \\\"pending\\\",\\n \\\"sold\\\"\\n ],\\n \\\"default\\\": \\\"available\\\"\\n }\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"content\\\": {\\n \\\"application/xml\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\n }\\n }\\n },\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\n }\\n }\\n }\\n }\\n },\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid status value\\\"\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"petstore_auth\\\": [\\n \\\"write:pets\\\",\\n \\\"read:pets\\\"\\n ]\\n }\\n ]\\n }\\n },\\n \\\"/pet/findByTags\\\": {\\n \\\"get\\\": {\\n \\\"tags\\\": [\\n \\\"pet\\\"\\n ],\\n \\\"summary\\\": \\\"Finds Pets by tags\\\",\\n \\\"description\\\": \\\"Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.\\\",\\n \\\"operationId\\\": \\\"findPetsByTags\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"tags\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"Tags to filter by\\\",\\n \\\"required\\\": true,\\n \\\"explode\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"content\\\": {\\n \\\"application/xml\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\n }\\n }\\n },\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\n }\\n }\\n }\\n }\\n },\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid tag value\\\"\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"petstore_auth\\\": [\\n \\\"write:pets\\\",\\n \\\"read:pets\\\"\\n ]\\n }\\n ],\\n \\\"deprecated\\\": true\\n }\\n },\\n \\\"/pet/{petId}\\\": {\\n \\\"get\\\": {\\n \\\"tags\\\": [\\n \\\"pet\\\"\\n ],\\n \\\"summary\\\": \\\"Find pet by ID\\\",\\n \\\"description\\\": \\\"Returns a single pet\\\",\\n \\\"operationId\\\": \\\"getPetById\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"petId\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"ID of pet to return\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"content\\\": {\\n \\\"application/xml\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\n }\\n },\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\n }\\n }\\n }\\n },\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\n },\\n \\\"404\\\": {\\n \\\"description\\\": \\\"Pet not found\\\"\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"api_key\\\": []\\n }\\n ]\\n },\\n \\\"post\\\": {\\n \\\"tags\\\": [\\n \\\"pet\\\"\\n ],\\n \\\"summary\\\": \\\"Updates a pet in the store with form data\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"updatePetWithForm\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"petId\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"ID of pet that needs to be updated\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"405\\\": {\\n \\\"description\\\": \\\"Invalid input\\\"\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"petstore_auth\\\": [\\n \\\"write:pets\\\",\\n \\\"read:pets\\\"\\n ]\\n }\\n ],\\n \\\"requestBody\\\": {\\n \\\"content\\\": {\\n \\\"application/x-www-form-urlencoded\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"object\\\",\\n \\\"properties\\\": {\\n \\\"name\\\": {\\n \\\"description\\\": \\\"Updated name of the pet\\\",\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"status\\\": {\\n \\\"description\\\": \\\"Updated status of the pet\\\",\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n }\\n }\\n }\\n }\\n },\\n \\\"delete\\\": {\\n \\\"tags\\\": [\\n \\\"pet\\\"\\n ],\\n \\\"summary\\\": \\\"Deletes a pet\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"deletePet\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"api_key\\\",\\n \\\"in\\\": \\\"header\\\",\\n \\\"required\\\": false,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n },\\n {\\n \\\"name\\\": \\\"petId\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"Pet id to delete\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\n },\\n \\\"404\\\": {\\n \\\"description\\\": \\\"Pet not found\\\"\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"petstore_auth\\\": [\\n \\\"write:pets\\\",\\n \\\"read:pets\\\"\\n ]\\n }\\n ]\\n }\\n },\\n \\\"/pet/{petId}/uploadImage\\\": {\\n \\\"post\\\": {\\n \\\"tags\\\": [\\n \\\"pet\\\"\\n ],\\n \\\"summary\\\": \\\"uploads an image\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"uploadFile\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"petId\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"ID of pet to update\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"content\\\": {\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/ApiResponse\\\"\\n }\\n }\\n }\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"petstore_auth\\\": [\\n \\\"write:pets\\\",\\n \\\"read:pets\\\"\\n ]\\n }\\n ],\\n \\\"requestBody\\\": {\\n \\\"content\\\": {\\n \\\"application/octet-stream\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"format\\\": \\\"binary\\\"\\n }\\n }\\n }\\n }\\n }\\n },\\n \\\"/store/inventory\\\": {\\n \\\"get\\\": {\\n \\\"tags\\\": [\\n \\\"store\\\"\\n ],\\n \\\"summary\\\": \\\"Returns pet inventories by status\\\",\\n \\\"description\\\": \\\"Returns a map of status codes to quantities\\\",\\n \\\"operationId\\\": \\\"getInventory\\\",\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"content\\\": {\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"object\\\",\\n \\\"additionalProperties\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int32\\\"\\n }\\n }\\n }\\n }\\n }\\n },\\n \\\"security\\\": [\\n {\\n \\\"api_key\\\": []\\n }\\n ],\\n \\\"parameters\\\": []\\n }\\n },\\n \\\"/store/order\\\": {\\n \\\"post\\\": {\\n \\\"tags\\\": [\\n \\\"store\\\"\\n ],\\n \\\"summary\\\": \\\"Place an order for a pet\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"placeOrder\\\",\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"content\\\": {\\n \\\"application/xml\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\n }\\n },\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\n }\\n }\\n }\\n },\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid Order\\\"\\n }\\n },\\n \\\"requestBody\\\": {\\n \\\"content\\\": {\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\n }\\n }\\n },\\n \\\"description\\\": \\\"order placed for purchasing the pet\\\",\\n \\\"required\\\": true\\n },\\n \\\"parameters\\\": []\\n }\\n },\\n \\\"/store/order/{orderId}\\\": {\\n \\\"get\\\": {\\n \\\"tags\\\": [\\n \\\"store\\\"\\n ],\\n \\\"summary\\\": \\\"Find purchase order by ID\\\",\\n \\\"description\\\": \\\"For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions\\\",\\n \\\"operationId\\\": \\\"getOrderById\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"orderId\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"ID of pet that needs to be fetched\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\",\\n \\\"minimum\\\": 1,\\n \\\"maximum\\\": 10\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"content\\\": {\\n \\\"application/xml\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\n }\\n },\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\n }\\n }\\n }\\n },\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\n },\\n \\\"404\\\": {\\n \\\"description\\\": \\\"Order not found\\\"\\n }\\n }\\n },\\n \\\"delete\\\": {\\n \\\"tags\\\": [\\n \\\"store\\\"\\n ],\\n \\\"summary\\\": \\\"Delete purchase order by ID\\\",\\n \\\"description\\\": \\\"For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors\\\",\\n \\\"operationId\\\": \\\"deleteOrder\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"orderId\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"ID of the order that needs to be deleted\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\",\\n \\\"minimum\\\": 1\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\n },\\n \\\"404\\\": {\\n \\\"description\\\": \\\"Order not found\\\"\\n }\\n }\\n }\\n },\\n \\\"/user\\\": {\\n \\\"post\\\": {\\n \\\"tags\\\": [\\n \\\"user\\\"\\n ],\\n \\\"summary\\\": \\\"Create user\\\",\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\n \\\"operationId\\\": \\\"createUser\\\",\\n \\\"responses\\\": {\\n \\\"default\\\": {\\n \\\"description\\\": \\\"successful operation\\\"\\n }\\n },\\n \\\"requestBody\\\": {\\n \\\"content\\\": {\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\n }\\n }\\n },\\n \\\"description\\\": \\\"Created user object\\\",\\n \\\"required\\\": true\\n },\\n \\\"parameters\\\": []\\n }\\n },\\n \\\"/user/createWithArray\\\": {\\n \\\"post\\\": {\\n \\\"tags\\\": [\\n \\\"user\\\"\\n ],\\n \\\"summary\\\": \\\"Creates list of users with given input array\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"createUsersWithArrayInput\\\",\\n \\\"responses\\\": {\\n \\\"default\\\": {\\n \\\"description\\\": \\\"successful operation\\\"\\n }\\n },\\n \\\"requestBody\\\": {\\n \\\"$ref\\\": \\\"#/components/requestBodies/UserArray\\\"\\n },\\n \\\"parameters\\\": []\\n }\\n },\\n \\\"/user/createWithList\\\": {\\n \\\"post\\\": {\\n \\\"tags\\\": [\\n \\\"user\\\"\\n ],\\n \\\"summary\\\": \\\"Creates list of users with given input array\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"createUsersWithListInput\\\",\\n \\\"responses\\\": {\\n \\\"default\\\": {\\n \\\"description\\\": \\\"successful operation\\\"\\n }\\n },\\n \\\"requestBody\\\": {\\n \\\"$ref\\\": \\\"#/components/requestBodies/UserArray\\\"\\n },\\n \\\"parameters\\\": []\\n }\\n },\\n \\\"/user/login\\\": {\\n \\\"get\\\": {\\n \\\"tags\\\": [\\n \\\"user\\\"\\n ],\\n \\\"summary\\\": \\\"Logs user into the system\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"loginUser\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"username\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"The user name for login\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n },\\n {\\n \\\"name\\\": \\\"password\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"The password for login in clear text\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"format\\\": \\\"password\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"headers\\\": {\\n \\\"X-Rate-Limit\\\": {\\n \\\"description\\\": \\\"calls per hour allowed by the user\\\",\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int32\\\"\\n }\\n },\\n \\\"X-Expires-After\\\": {\\n \\\"description\\\": \\\"date in UTC when token expires\\\",\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"format\\\": \\\"date-time\\\"\\n }\\n }\\n },\\n \\\"content\\\": {\\n \\\"application/xml\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n },\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n }\\n },\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid username/password supplied\\\"\\n }\\n }\\n }\\n },\\n \\\"/user/logout\\\": {\\n \\\"get\\\": {\\n \\\"tags\\\": [\\n \\\"user\\\"\\n ],\\n \\\"summary\\\": \\\"Logs out current logged in user session\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"logoutUser\\\",\\n \\\"responses\\\": {\\n \\\"default\\\": {\\n \\\"description\\\": \\\"successful operation\\\"\\n }\\n },\\n \\\"parameters\\\": []\\n }\\n },\\n \\\"/user/{username}\\\": {\\n \\\"get\\\": {\\n \\\"tags\\\": [\\n \\\"user\\\"\\n ],\\n \\\"summary\\\": \\\"Get user by user name\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"operationId\\\": \\\"getUserByName\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"username\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"The name that needs to be fetched. Use user1 for testing. \\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"successful operation\\\",\\n \\\"content\\\": {\\n \\\"application/xml\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\n }\\n },\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\n }\\n }\\n }\\n },\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid username supplied\\\"\\n },\\n \\\"404\\\": {\\n \\\"description\\\": \\\"User not found\\\"\\n }\\n }\\n },\\n \\\"put\\\": {\\n \\\"tags\\\": [\\n \\\"user\\\"\\n ],\\n \\\"summary\\\": \\\"Updated user\\\",\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\n \\\"operationId\\\": \\\"updateUser\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"username\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"name that need to be updated\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid user supplied\\\"\\n },\\n \\\"404\\\": {\\n \\\"description\\\": \\\"User not found\\\"\\n }\\n },\\n \\\"requestBody\\\": {\\n \\\"content\\\": {\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\n }\\n }\\n },\\n \\\"description\\\": \\\"Updated user object\\\",\\n \\\"required\\\": true\\n }\\n },\\n \\\"delete\\\": {\\n \\\"tags\\\": [\\n \\\"user\\\"\\n ],\\n \\\"summary\\\": \\\"Delete user\\\",\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\n \\\"operationId\\\": \\\"deleteUser\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"username\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"The name that needs to be deleted\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"400\\\": {\\n \\\"description\\\": \\\"Invalid username supplied\\\"\\n },\\n \\\"404\\\": {\\n \\\"description\\\": \\\"User not found\\\"\\n }\\n }\\n }\\n }\\n },\\n \\\"externalDocs\\\": {\\n \\\"description\\\": \\\"See AsyncAPI example\\\",\\n \\\"url\\\": \\\"https://mermade.github.io/shins/asyncapi.html\\\"\\n },\\n \\\"components\\\": {\\n \\\"schemas\\\": {\\n \\\"Order\\\": {\\n \\\"type\\\": \\\"object\\\",\\n \\\"properties\\\": {\\n \\\"id\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n },\\n \\\"petId\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n },\\n \\\"quantity\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int32\\\"\\n },\\n \\\"shipDate\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"format\\\": \\\"date-time\\\"\\n },\\n \\\"status\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"description\\\": \\\"Order Status\\\",\\n \\\"enum\\\": [\\n \\\"placed\\\",\\n \\\"approved\\\",\\n \\\"delivered\\\"\\n ]\\n },\\n \\\"complete\\\": {\\n \\\"type\\\": \\\"boolean\\\",\\n \\\"default\\\": false\\n }\\n },\\n \\\"xml\\\": {\\n \\\"name\\\": \\\"Order\\\"\\n }\\n },\\n \\\"Category\\\": {\\n \\\"type\\\": \\\"object\\\",\\n \\\"properties\\\": {\\n \\\"id\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n },\\n \\\"name\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n },\\n \\\"xml\\\": {\\n \\\"name\\\": \\\"Category\\\"\\n }\\n },\\n \\\"User\\\": {\\n \\\"type\\\": \\\"object\\\",\\n \\\"properties\\\": {\\n \\\"id\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n },\\n \\\"username\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"firstName\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"lastName\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"email\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"password\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"phone\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"userStatus\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int32\\\",\\n \\\"description\\\": \\\"User Status\\\"\\n }\\n },\\n \\\"xml\\\": {\\n \\\"name\\\": \\\"User\\\"\\n }\\n },\\n \\\"Tag\\\": {\\n \\\"type\\\": \\\"object\\\",\\n \\\"properties\\\": {\\n \\\"id\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n },\\n \\\"name\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n },\\n \\\"xml\\\": {\\n \\\"name\\\": \\\"Tag\\\"\\n }\\n },\\n \\\"Pet\\\": {\\n \\\"type\\\": \\\"object\\\",\\n \\\"required\\\": [\\n \\\"name\\\",\\n \\\"photoUrls\\\"\\n ],\\n \\\"properties\\\": {\\n \\\"id\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n },\\n \\\"category\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Category\\\"\\n },\\n \\\"name\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"example\\\": \\\"doggie\\\"\\n },\\n \\\"photoUrls\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"xml\\\": {\\n \\\"name\\\": \\\"photoUrl\\\",\\n \\\"wrapped\\\": true\\n },\\n \\\"items\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n },\\n \\\"tags\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"xml\\\": {\\n \\\"name\\\": \\\"tag\\\",\\n \\\"wrapped\\\": true\\n },\\n \\\"items\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Tag\\\"\\n }\\n },\\n \\\"status\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"description\\\": \\\"pet status in the store\\\",\\n \\\"enum\\\": [\\n \\\"available\\\",\\n \\\"pending\\\",\\n \\\"sold\\\"\\n ]\\n }\\n },\\n \\\"xml\\\": {\\n \\\"name\\\": \\\"Pet\\\"\\n }\\n },\\n \\\"ApiResponse\\\": {\\n \\\"type\\\": \\\"object\\\",\\n \\\"properties\\\": {\\n \\\"code\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int32\\\"\\n },\\n \\\"type\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"message\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n }\\n },\\n \\\"requestBodies\\\": {\\n \\\"Pet\\\": {\\n \\\"content\\\": {\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\n }\\n },\\n \\\"application/xml\\\": {\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\n }\\n }\\n },\\n \\\"description\\\": \\\"Pet object that needs to be added to the store\\\",\\n \\\"required\\\": true\\n },\\n \\\"UserArray\\\": {\\n \\\"content\\\": {\\n \\\"application/json\\\": {\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\n }\\n }\\n }\\n },\\n \\\"description\\\": \\\"List of user object\\\",\\n \\\"required\\\": true\\n }\\n },\\n \\\"securitySchemes\\\": {\\n \\\"petstore_auth\\\": {\\n \\\"type\\\": \\\"oauth2\\\",\\n \\\"flows\\\": {\\n \\\"implicit\\\": {\\n \\\"authorizationUrl\\\": \\\"http://petstore.swagger.io/oauth/dialog\\\",\\n \\\"scopes\\\": {\\n \\\"write:pets\\\": \\\"modify pets in your account\\\",\\n \\\"read:pets\\\": \\\"read your pets\\\"\\n }\\n }\\n }\\n },\\n \\\"api_key\\\": {\\n \\\"type\\\": \\\"apiKey\\\",\\n \\\"name\\\": \\\"api_key\\\",\\n \\\"in\\\": \\\"header\\\"\\n }\\n },\\n \\\"links\\\": {},\\n \\\"callbacks\\\": {}\\n },\\n \\\"security\\\": []\\n}\",\r\n \"format\": \"openapi+json\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "916ae263-ab0c-4517-b2e4-f31940408ba2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "40501" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:23:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775?api-version=2019-01-01&asyncId=5e3cbc122393691028e5c6bd&asyncCode=201" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63631f59-d4c9-406e-bda7-c3a7f8efc0e6" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "2a2f8215-2cb2-43ec-bea6-9d1d916eae0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T012330Z:2a2f8215-2cb2-43ec-bea6-9d1d916eae0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775?api-version=2019-01-01&asyncId=5e3cbc122393691028e5c6bd&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkODc3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAxJmFzeW5jSWQ9NWUzY2JjMTIyMzkzNjkxMDI4ZTVjNmJkJmFzeW5jQ29kZT0yMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:24:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAC44=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e82c4afd-62aa-4747-b7ce-c506c5671f49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a6be4fc2-0430-4a75-b95b-bedefaffc689" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T012401Z:a6be4fc2-0430-4a75-b95b-bedefaffc689" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8775\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapi4\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkODc3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61c9d5da-018f-49df-b764-8c44aab49df6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:24:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAC44=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "891b46f8-3128-4204-ab08-fb66c3629075" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "1826851d-3224-4313-9a64-9d09bcb63cb4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T012401Z:1826851d-3224-4313-9a64-9d09bcb63cb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8775\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapi4\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775?format=openapi-link&export=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkODc3NT9mb3JtYXQ9b3BlbmFwaS1saW5rJmV4cG9ydD10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f05ddd8-8a59-400a-b83d-058d9d64afed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:24:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAC44=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f9c8f82-5b13-40ea-bac6-6dbf2d498993" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "aba22cf7-400d-461a-9556-6dfc37e61b3c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T012402Z:aba22cf7-400d-461a-9556-6dfc37e61b3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "407" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775\",\r\n \"format\": \"openapi-link\",\r\n \"value\": {\r\n \"link\": \"https://apimsthslzlfkuwwyzgff2qn.blob.core.windows.net/api-export/Swagger Petstore.yaml?sv=2017-04-17&sr=b&sig=GpaSw%2FWbAgJqFldWzOLssed5JMCtJ0Dn7mgj4VVCf10%3D&se=2020-02-07T01:29:02Z&sp=r\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid8775?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkODc3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e47184b7-d654-4f73-8347-80131237e76e" + ], + "If-Match": [ + "*" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:24:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2798e2fb-05cf-4065-87ee-070f37091339" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "6bd5e57d-8b9c-4cb0-8c7d-7a54a44e16fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T012402Z:6bd5e57d-8b9c-4cb0-8c7d-7a54a44e16fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "OpenApiInJsonTest": [ + "aid8775" + ] + }, + "Variables": { + "SubscriptionId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "TestCertificate": "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", + "TestCertificatePassword": "Password", + "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "ServiceName": "sdktestservice20190101", + "Location": "CentralUS", + "ResourceGroup": "Api-Default-CentralUS" + } +} \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/OpenApiTest.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/OpenApiTest.json index 0946d07cbcb5..f36373c08fd7 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/OpenApiTest.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/OpenApiTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "175dd6dc-d961-4bc0-ac1e-324b6cc4805f" + "6cca3c4f-5861-43d3-a607-a7cecd665a5e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:17 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "416989cb-8c9d-4a8c-bb9d-e62f7a115955", - "afa311c2-6a54-48a8-8575-5c9d062c5715" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e371090f-7a79-419a-aee9-ecd3baf6a9ab", + "6f44ee27-13de-49dd-bf9f-c01593a04311" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "685f8724-53a1-4d5d-b2a6-287c518baa2f" + "8d1e19af-1010-4a4a-92f3-70008dddd5dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021212Z:685f8724-53a1-4d5d-b2a6-287c518baa2f" + "WESTUS:20200207T005718Z:8d1e19af-1010-4a4a-92f3-70008dddd5dc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:12 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5b492ac-0156-4b6b-80df-715d4bfa1a7f" + "022d3532-118f-4281-8f60-5dbebdd12519" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c900467f-3c68-4b8d-8efd-8979de4b169c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6f501767-a9c2-4b67-9274-2bc090fb7d22" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "46af27f6-294c-47a3-8b2a-51cb89657edf" + "5110dd19-4983-46b9-9f7c-d17dd6fa33de" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021212Z:46af27f6-294c-47a3-8b2a-51cb89657edf" + "WESTUS:20200207T005718Z:5110dd19-4983-46b9-9f7c-d17dd6fa33de" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:12 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNTU5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapi3\",\r\n \"value\": \"openapi: \\\"3.0.0\\\"\\r\\ninfo:\\r\\n version: 1.0.0\\r\\n title: Swagger Petstore\\r\\n license:\\r\\n name: MIT\\r\\nservers:\\r\\n - url: http://petstore.swagger.io/v1\\r\\npaths:\\r\\n /pets:\\r\\n get:\\r\\n summary: List all pets\\r\\n operationId: listPets\\r\\n tags:\\r\\n - pets\\r\\n parameters:\\r\\n - name: limit\\r\\n in: query\\r\\n description: How many items to return at one time (max 100)\\r\\n required: false\\r\\n schema:\\r\\n type: integer\\r\\n format: int32\\r\\n responses:\\r\\n '200':\\r\\n description: A paged array of pets\\r\\n headers:\\r\\n x-next:\\r\\n description: A link to the next page of responses\\r\\n schema:\\r\\n type: string\\r\\n content:\\r\\n application/json: \\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Pets\\\"\\r\\n default:\\r\\n description: unexpected error\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Error\\\"\\r\\n post:\\r\\n summary: Create a pet\\r\\n operationId: createPets\\r\\n tags:\\r\\n - pets\\r\\n responses:\\r\\n '201':\\r\\n description: Null response\\r\\n default:\\r\\n description: unexpected error\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Error\\\"\\r\\n /pets/{petId}:\\r\\n get:\\r\\n summary: Info for a specific pet\\r\\n operationId: showPetById\\r\\n tags:\\r\\n - pets\\r\\n parameters:\\r\\n - name: petId\\r\\n in: path\\r\\n required: true\\r\\n description: The id of the pet to retrieve\\r\\n schema:\\r\\n type: string\\r\\n responses:\\r\\n '200':\\r\\n description: Expected response to a valid request\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Pets\\\"\\r\\n default:\\r\\n description: unexpected error\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Error\\\"\\r\\ncomponents:\\r\\n schemas:\\r\\n Pet:\\r\\n required:\\r\\n - id\\r\\n - name\\r\\n properties:\\r\\n id:\\r\\n type: integer\\r\\n format: int64\\r\\n name:\\r\\n type: string\\r\\n tag:\\r\\n type: string\\r\\n Pets:\\r\\n type: array\\r\\n items:\\r\\n $ref: \\\"#/components/schemas/Pet\\\"\\r\\n Error:\\r\\n required:\\r\\n - code\\r\\n - message\\r\\n properties:\\r\\n code:\\r\\n type: integer\\r\\n format: int32\\r\\n message:\\r\\n type: string\",\r\n \"format\": \"openapi\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d5d2f670-c8db-4177-a41a-cbde02977919" + "1c2de06e-2c99-4558-9853-ced8aea17734" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,95 +168,95 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:21 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01&asyncId=5caea27db597440f487b0e16&asyncCode=201" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599?api-version=2019-01-01&asyncId=5e3cb5f12393691028e5c62a&asyncCode=201" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c82ceb02-ba16-4539-8961-d6e5dc1b1aae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8b7ddaea-062d-4d8a-8922-5c3c893f6f29" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "8a2ce68f-3a52-46aa-80f6-25aa9195f1db" + "50109598-d98f-4615-a398-7cb97abb7ac0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021213Z:8a2ce68f-3a52-46aa-80f6-25aa9195f1db" + "WESTUS:20200207T005721Z:50109598-d98f-4615-a398-7cb97abb7ac0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:12 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01&asyncId=5caea27db597440f487b0e16&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMjdkYjU5NzQ0MGY0ODdiMGUxNiZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599?api-version=2019-01-01&asyncId=5e3cb5f12393691028e5c62a&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNTU5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAxJmFzeW5jSWQ9NWUzY2I1ZjEyMzkzNjkxMDI4ZTVjNjJhJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:51 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcaU=\"" + "\"AAAAAAAACak=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "718240ad-eda3-4d3f-94c5-75d39002581f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bc51fae6-1397-4257-9df1-71b267b2e10e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "868b6a28-aa02-4185-9470-0b064ceea886" + "91c86124-3517-4105-b5db-af80fae385cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021243Z:868b6a28-aa02-4185-9470-0b064ceea886" + "WESTUS:20200207T005751Z:91c86124-3517-4105-b5db-af80fae385cc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:42 GMT" - ], "Content-Length": [ - "721" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,64 +265,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid6500\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapi3\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid5599\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapi3\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNTU5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2831cf37-5dd4-45f6-ae96-fcc7fedab413" + "6e7f454c-a9f3-49ef-bcec-56a3eafc9708" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:51 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcaU=\"" + "\"AAAAAAAACak=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8abd5ca2-e51e-480a-9f05-b2db309dac03" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0d0cdaa5-ae84-4ebd-a4ef-e0b08334d8f8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "affc0baa-6378-4f70-9e10-8f6b4da38eb6" + "ac1b3361-6b59-4212-ad63-9ef4c94c6345" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021243Z:affc0baa-6378-4f70-9e10-8f6b4da38eb6" + "WESTUS:20200207T005751Z:ac1b3361-6b59-4212-ad63-9ef4c94c6345" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:43 GMT" - ], "Content-Length": [ - "721" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,64 +331,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid6500\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapi3\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid5599\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapi3\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?format=openapi-link&export=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/Zm9ybWF0PW9wZW5hcGktbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599?format=openapi-link&export=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNTU5OT9mb3JtYXQ9b3BlbmFwaS1saW5rJmV4cG9ydD10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a5fe5ef-6a17-4cb3-8cd0-8cd24f459a57" + "dc9b5fb0-648b-44ad-b775-e0f141deeabf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcaU=\"" + "\"AAAAAAAACak=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4225115a-d8cd-4f40-af98-ad7a12577892" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0d7176ed-5760-407b-9486-868298de6165" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "39911b4f-ce18-4024-8cef-d4700c6c2813" + "92d6a4dd-853a-4fbd-b2af-b7479b4655dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021243Z:39911b4f-ce18-4024-8cef-d4700c6c2813" + "WESTUS:20200207T005753Z:92d6a4dd-853a-4fbd-b2af-b7479b4655dc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:43 GMT" - ], "Content-Length": [ - "397" + "409" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,67 +397,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500\",\r\n \"format\": \"openapi-link\",\r\n \"value\": {\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Swagger Petstore.yaml?sv=2015-07-08&sr=b&sig=1pkbkQJBbIy83CqBE8N3MJv5lGhDUd9R7fH1RwOJ2HY%3D&se=2019-04-11T02:17:43Z&sp=r\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599\",\r\n \"format\": \"openapi-link\",\r\n \"value\": {\r\n \"link\": \"https://apimsthslzlfkuwwyzgff2qn.blob.core.windows.net/api-export/Swagger Petstore.yaml?sv=2017-04-17&sr=b&sig=55ph1KsyPYRP5wJT2kDR6vXJuchFedWL25%2BY6ujIy%2FI%3D&se=2020-02-07T01:02:53Z&sp=r\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid5599?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNTU5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4efc0c40-20bc-4e69-8d9f-a5d7b3237456" + "48769db8-4b9b-4ab0-b0e5-6a7d42826eee" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b759b8d1-8341-42b8-a275-5e9bd9da5dd2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9542f13d-af2c-466a-989f-423b9fd56bd5" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "baad2a43-f47e-4584-a96b-c47a8c2acf3b" + "e132b7fb-f88b-47bb-a13a-15383c699c90" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021244Z:baad2a43-f47e-4584-a96b-c47a8c2acf3b" + "WESTUS:20200207T005754Z:e132b7fb-f88b-47bb-a13a-15383c699c90" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -466,7 +466,7 @@ ], "Names": { "OpenApiTest": [ - "aid6500" + "aid5599" ] }, "Variables": { @@ -474,7 +474,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/SwaggerTest.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/SwaggerTest.json index a159028ad1de..88cc85d9d942 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/SwaggerTest.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/SwaggerTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8bc147f7-e4aa-467d-ad8b-d03413ac6374" + "d6e3cba8-89f9-4e55-9ff9-7421901cdb73" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12ec5153-2128-4af1-b32b-831dcac736ba", - "cbd87d8c-d622-46e0-bd63-08fdc244f424" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3e360576-1170-49ee-ac43-a63af30a323e", + "d66b656f-6105-47fb-83cd-63fcd055f200" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "0618f5fc-b045-4e20-b705-497696f8747d" + "0797d221-e310-4dc4-9c87-887acc2693ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021245Z:0618f5fc-b045-4e20-b705-497696f8747d" + "WESTUS:20200207T005756Z:0797d221-e310-4dc4-9c87-887acc2693ae" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:45 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1519a412-f30d-417f-8db0-a72ea0f74b95" + "a84ab952-afb6-4cff-855d-ed23b386809b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70cb8507-83fe-4545-8404-88086247dd14" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7fa3db38-f2f3-49c5-bd6e-9dc8872a9c1f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11993" ], "x-ms-correlation-request-id": [ - "b08bac7e-f908-4617-bccf-23f751d79ca5" + "b7de7e2c-4c86-4a0a-97d4-fff14d1fe568" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021246Z:b08bac7e-f908-4617-bccf-23f751d79ca5" + "WESTUS:20200207T005756Z:b7de7e2c-4c86-4a0a-97d4-fff14d1fe568" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:45 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNzAxOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bf0d0b6b-57d4-4e69-9486-3a781f3866fe" + "8ea314a4-95ee-49ab-b603-22278fd020ed" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,95 +168,95 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:56 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01&asyncId=5caea29eb597440f487b0e1c&asyncCode=201" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018?api-version=2019-01-01&asyncId=5e3cb6142393691028e5c630&asyncCode=201" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8074e9e9-dba7-496c-ad00-a32bd9871459" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4c247991-b37b-4f0d-b9b3-31dd4a1bd070" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "b42730df-57af-4950-b91f-81a99538971f" + "836ec838-8de1-4d95-b95a-5fda1130e73b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021246Z:b42730df-57af-4950-b91f-81a99538971f" + "WESTUS:20200207T005756Z:836ec838-8de1-4d95-b95a-5fda1130e73b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01&asyncId=5caea29eb597440f487b0e1c&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMjllYjU5NzQ0MGY0ODdiMGUxYyZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018?api-version=2019-01-01&asyncId=5e3cb6142393691028e5c630&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNzAxOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAxJmFzeW5jSWQ9NWUzY2I2MTQyMzkzNjkxMDI4ZTVjNjMwJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:26 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcbU=\"" + "\"AAAAAAAACbs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3077171a-ddbd-4e1b-8076-869ee8f0d3e8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "90cadf02-c813-4f71-a529-316a938e38fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-correlation-request-id": [ - "6e7ba27c-0611-4a90-9a90-65e5efc6c421" + "d1daf4d2-5593-4927-a23c-6bf207ae8f3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021316Z:6e7ba27c-0611-4a90-9a90-65e5efc6c421" + "WESTUS:20200207T005827Z:d1daf4d2-5593-4927-a23c-6bf207ae8f3e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:15 GMT" - ], "Content-Length": [ - "844" + "852" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,64 +265,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7282\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7018\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNzAxOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f954d16-a619-43ed-b9d3-8188ab2c0347" + "68f23ddf-c654-4e5e-a15b-fbcfcf3648cc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:26 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcbU=\"" + "\"AAAAAAAACbs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c87ff097-02bb-4ae2-af63-c138c3661a0a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e4918f7f-6b08-405e-9e46-d3f7087d197a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-correlation-request-id": [ - "9077b9cc-65f0-4a3d-8e85-812352497a4d" + "d8115781-6a8b-4571-bd7a-5aeed4f553e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021316Z:9077b9cc-65f0-4a3d-8e85-812352497a4d" + "WESTUS:20200207T005827Z:d8115781-6a8b-4571-bd7a-5aeed4f553e5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:16 GMT" - ], "Content-Length": [ - "844" + "852" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,64 +331,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7282\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7018\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?format=swagger-link&export=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/Zm9ybWF0PXN3YWdnZXItbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018?format=swagger-link&export=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNzAxOD9mb3JtYXQ9c3dhZ2dlci1saW5rJmV4cG9ydD10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83811572-3d81-47d5-bfe8-ffb3a90cf197" + "a332d1e8-7997-4dbc-86df-78649ea3645f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:26 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcbU=\"" + "\"AAAAAAAACbs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57da78d6-2e1e-4885-a39a-6db1c093f74a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e4f984ee-3be0-4fcd-8c48-28336c5f9803" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-correlation-request-id": [ - "6bd1c7c1-c3f8-4685-af5d-362d94dfebce" + "85a2f77a-b718-4409-bb5c-9419d52b7095" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021317Z:6bd1c7c1-c3f8-4685-af5d-362d94dfebce" + "WESTUS:20200207T005827Z:85a2f77a-b718-4409-bb5c-9419d52b7095" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:16 GMT" - ], "Content-Length": [ - "418" + "420" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,67 +397,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282\",\r\n \"format\": \"swagger-link-json\",\r\n \"value\": {\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Swagger Petstore Extensive.json?sv=2015-07-08&sr=b&sig=86pKkpl%2Bsd1amy4Zq1H1AYz%2FgaaamC15nG0TVP0Sl%2F4%3D&se=2019-04-11T02:18:17Z&sp=r\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018\",\r\n \"format\": \"swagger-link-json\",\r\n \"value\": {\r\n \"link\": \"https://apimsthslzlfkuwwyzgff2qn.blob.core.windows.net/api-export/Swagger Petstore Extensive.json?sv=2017-04-17&sr=b&sig=PtC4GLZ1WV2UksAT4uISTiwMQDus68tytWxsk2LchEA%3D&se=2020-02-07T01:03:27Z&sp=r\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid7018?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkNzAxOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f50e57e1-bb00-49f9-9328-3b52e5320728" + "70bfbbee-ab8e-4428-8a86-ae16cb520992" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65e3adbb-9d69-47fe-bab2-751966cf7968" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "dbe02bbf-a271-4820-8b91-015c0dba2caf" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "2f5a33ed-31ac-4742-b42a-699e70a199e5" + "24b55b1f-0cb1-4637-be14-2b69b914f55f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021317Z:2f5a33ed-31ac-4742-b42a-699e70a199e5" + "WESTUS:20200207T005827Z:24b55b1f-0cb1-4637-be14-2b69b914f55f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:17 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -466,7 +466,7 @@ ], "Names": { "SwaggerTest": [ - "aid7282" + "aid7018" ] }, "Variables": { @@ -474,7 +474,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/WadlTest.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/WadlTest.json index 0da0bf411d49..674586ceb2c5 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/WadlTest.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/WadlTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ba874eea-518f-46d5-a3c0-fbb931adc299" + "b370b07a-7255-4103-b52c-23bb0c190d1a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b7f9395d-e66b-4887-af16-1ba164a95da9", - "0a33ae43-8ca6-4300-921d-2267e42f9c4e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11ea5799-907d-47f0-bd4f-cdcd16923d30", + "ab259188-8fee-4d78-8cfe-d600ca589e5c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "2e0e1145-c5ac-4384-afbc-a4d8c7f78a9b" + "57234b4e-b24d-4199-a74f-cf153d804e4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021319Z:2e0e1145-c5ac-4384-afbc-a4d8c7f78a9b" + "WESTUS:20200207T005828Z:57234b4e-b24d-4199-a74f-cf153d804e4f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:18 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "999f9e50-4538-414a-8019-ce90864c8082" + "d13201b1-6f8e-4090-a4d3-b747c11ed6bd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9eefea03-df1b-464f-8c53-db4a40bd6a2b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "78b07fa2-6676-4e97-847c-d315edceb8ad" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "5567a440-ed67-42dc-9141-1436daf65c30" + "54622bac-8f94-4169-82ee-cca2a9c45959" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021319Z:5567a440-ed67-42dc-9141-1436daf65c30" + "WESTUS:20200207T005829Z:54622bac-8f94-4169-82ee-cca2a9c45959" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:19 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkOTc3MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"yahooWadl\",\r\n \"value\": \"\\r\\n\\r\\n Yahoo News Search API\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wadl-xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3aa1ea9e-70aa-404b-b828-d273e3cada26" + "48ca376c-83b6-4c08-ad89-9b168ec127c7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,95 +168,95 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:28 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01&asyncId=5caea2bfb597440f487b0e22&asyncCode=201" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770?api-version=2019-01-01&asyncId=5e3cb6352393691028e5c636&asyncCode=201" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b49503e0-881c-44b1-a0fa-8f2212f13312" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "23d9e310-9544-42ac-9a98-9f94622bda6e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "a985def7-31ca-49c2-a702-e6bac115b16a" + "fedcb321-9fa7-4d9d-a54f-6dbcefcedce8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021319Z:a985def7-31ca-49c2-a702-e6bac115b16a" + "WESTUS:20200207T005829Z:fedcb321-9fa7-4d9d-a54f-6dbcefcedce8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:19 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01&asyncId=5caea2bfb597440f487b0e22&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMmJmYjU5NzQ0MGY0ODdiMGUyMiZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770?api-version=2019-01-01&asyncId=5e3cb6352393691028e5c636&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkOTc3MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAxJmFzeW5jSWQ9NWUzY2I2MzUyMzkzNjkxMDI4ZTVjNjM2JmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcdQ=\"" + "\"AAAAAAAACdo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f2ec21b-8b7d-436a-9940-b1fe2d4b4be0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "df9bb7ae-9b5a-411d-bb47-a2b5fd87949c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "185b9371-e939-4c3d-a529-e4f2af0ef31e" + "7b8e1278-3ff8-46de-8f98-f12b302e08d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021350Z:185b9371-e939-4c3d-a529-e4f2af0ef31e" + "WESTUS:20200207T005859Z:7b8e1278-3ff8-46de-8f98-f12b302e08d8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:49 GMT" - ], "Content-Length": [ - "762" + "770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,64 +265,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid1215\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"yahooWadl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid9770\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"yahooWadl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkOTc3MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34685b23-abcb-486e-ae0b-f79fbc33b6b4" + "e203309a-8aa1-464f-85c9-74f65f62c5ee" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcdQ=\"" + "\"AAAAAAAACdo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66ec6686-ae81-4257-9e00-57702b97cf45" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "58a3aea3-1d15-41df-b9ba-6ab4a9e69b03" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "418c3e77-cce8-4782-8ba7-5881460bedd7" + "4d008d42-4fe1-4387-8ca1-dbaab855068e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021350Z:418c3e77-cce8-4782-8ba7-5881460bedd7" + "WESTUS:20200207T005859Z:4d008d42-4fe1-4387-8ca1-dbaab855068e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:49 GMT" - ], "Content-Length": [ - "762" + "770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,64 +331,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid1215\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"yahooWadl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid9770\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"yahooWadl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?format=wadl-link&export=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/Zm9ybWF0PXdhZGwtbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770?format=wadl-link&export=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkOTc3MD9mb3JtYXQ9d2FkbC1saW5rJmV4cG9ydD10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc3665b2-c6c7-437f-ace4-97ccbc4f0068" + "0b531219-253c-497c-bd87-21925df46bf1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:59 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcdQ=\"" + "\"AAAAAAAACdo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0133017-fdfa-49e7-b483-f98e7b86161a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e273c070-4fbc-4efa-88c5-465472dd789a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "ccaa7a86-4b75-4ae1-bac0-6ee5eac5e5fd" + "af724f52-ea64-494c-b565-f31adf4ff3dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021350Z:ccaa7a86-4b75-4ae1-bac0-6ee5eac5e5fd" + "WESTUS:20200207T005900Z:af724f52-ea64-494c-b565-f31adf4ff3dc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:49 GMT" - ], "Content-Length": [ - "401" + "407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,67 +397,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215\",\r\n \"format\": \"wadl-link-json\",\r\n \"value\": {\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Yahoo News Search.xml?sv=2015-07-08&sr=b&sig=8oF2bJHfm1XwUPohH%2BwHBPWpePL4nQpNWBzDaJXqUAY%3D&se=2019-04-11T02:18:50Z&sp=r\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770\",\r\n \"format\": \"wadl-link-json\",\r\n \"value\": {\r\n \"link\": \"https://apimsthslzlfkuwwyzgff2qn.blob.core.windows.net/api-export/Yahoo News Search.xml?sv=2017-04-17&sr=b&sig=XLszAzyZidr7Du6wAn7Z1GxZG3D2YLpDoCyFHemhkJM%3D&se=2020-02-07T01:04:00Z&sp=r\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid9770?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkOTc3MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f600bf4a-854d-453d-90f8-311c94232e9f" + "2fb3ec83-5124-4d41-b117-3a4b9621609b" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:58:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a5e7954f-d3d8-4b49-a61b-243204aded1c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f753f968-659a-47a0-b7ee-ce96d77f362a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "080a093f-3280-450a-ad36-3f3352374bef" + "4af78b73-4e67-407b-8bbf-a05530176630" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021351Z:080a093f-3280-450a-ad36-3f3352374bef" + "WESTUS:20200207T005900Z:4af78b73-4e67-407b-8bbf-a05530176630" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:50 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -466,7 +466,7 @@ ], "Names": { "WadlTest": [ - "aid1215" + "aid9770" ] }, "Variables": { @@ -474,7 +474,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/WsdlTest.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/WsdlTest.json index b0daff90f3c3..c4292c3f4b82 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/WsdlTest.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiExportImportTests/WsdlTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "45d95b89-85b0-4f07-b3ea-09ddfbf55662" + "14b28660-bde0-449d-b27e-a39ca29f2d45" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:59:34 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2287a36b-d30b-407d-93da-857101203f20", - "3fc606e2-739a-4924-9ebc-d8da3e078aaf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "048612be-5dc8-47c8-a2f6-c1f2b43d6c6f", + "630394eb-46ca-4b71-b20e-c1ecf29c70bc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "f154d242-a566-4e53-adef-ce07b0af0665" + "e5f02def-c092-40db-9c9f-e30c4328ef86" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021352Z:f154d242-a566-4e53-adef-ce07b0af0665" + "WESTUS:20200207T005934Z:e5f02def-c092-40db-9c9f-e30c4328ef86" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:52 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1a38e0e-bd69-4e7b-8b6f-e7bd5af3d46d" + "f1d74f66-9fc9-42cb-a4d4-35034bedcd7b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:59:34 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a06463d-abb1-46c5-9749-e51230604820" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8d33b25c-e3fd-428a-aef1-0134ee704bf5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "366df61f-7419-4105-9a85-4a8d6b122d9a" + "ec79fd04-3849-44df-ba4c-3f16a753ac53" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021352Z:366df61f-7419-4105-9a85-4a8d6b122d9a" + "WESTUS:20200207T005934Z:ec79fd04-3849-44df-ba4c-3f16a753ac53" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:52 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg5Mjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid1702?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkMTcwMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"weatherapi\",\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8be85da4-af70-4c95-af95-367de70ba718" + "90a21d45-8390-4692-9c1a-b2a626abe5f3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,95 +168,95 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:59:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01&asyncId=5caea2e1b597440f487b0e28&asyncCode=201" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid1702?api-version=2019-01-01&asyncId=5e3cb6772393691028e5c642&asyncCode=201" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2399b06-799d-44b7-a4e4-f0826effcb06" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c54f67df-d9e7-419d-b531-39e65a77cf36" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "f3c8277f-7060-4f84-a55b-ff30c49e730d" + "0850cfd5-ed67-4b3b-8b0b-6bf8f97ae3e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021353Z:f3c8277f-7060-4f84-a55b-ff30c49e730d" + "WESTUS:20200207T005935Z:0850cfd5-ed67-4b3b-8b0b-6bf8f97ae3e3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:13:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01&asyncId=5caea2e1b597440f487b0e28&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg5Mjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMmUxYjU5NzQ0MGY0ODdiMGUyOCZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid1702?api-version=2019-01-01&asyncId=5e3cb6772393691028e5c642&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkMTcwMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAxJmFzeW5jSWQ9NWUzY2I2NzcyMzkzNjkxMDI4ZTVjNjQyJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcd4=\"" + "\"AAAAAAAACjA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2604c4b7-337a-4939-8889-f15e8617116f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b66bcfa2-232e-4852-a7eb-9091bf43a622" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "a9d127be-d010-495c-b6be-57ecdfb518d7" + "f91768a0-fb3b-4025-87c4-6c9fc33fee7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021423Z:a9d127be-d010-495c-b6be-57ecdfb518d7" + "WESTUS:20200207T010005Z:f91768a0-fb3b-4025-87c4-6c9fc33fee7c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:23 GMT" - ], "Content-Length": [ - "749" + "757" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,64 +265,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8927\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"weatherapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid1702\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid1702\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"weatherapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg5Mjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid1702?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkMTcwMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0450fb3c-1c3b-4e72-b887-c65c4bd2781d" + "7a4e80c2-e00c-4513-b81d-072cbb904cc0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcd4=\"" + "\"AAAAAAAACjA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "babc8521-6f81-4bc6-9ba3-3ee326dda573" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ae6f0f4f-05df-4fbb-b908-ab5aa0a80cff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "b2ca81db-9b11-4240-9ce1-031615201b76" + "3f3475e1-0e5a-450c-9536-9c1a1506ac14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021423Z:b2ca81db-9b11-4240-9ce1-031615201b76" + "WESTUS:20200207T010005Z:3f3475e1-0e5a-450c-9536-9c1a1506ac14" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:23 GMT" - ], "Content-Length": [ - "749" + "757" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,67 +331,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8927\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"weatherapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid1702\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid1702\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"weatherapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg5Mjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/aid1702?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYWlkMTcwMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db7a169f-24fc-42d7-b325-810573cebba2" + "79058150-2b07-4da4-81b4-f329d49ccd0d" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c838366-9b40-4e53-bfb1-d8a64397394c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "360d6142-981d-48cd-9239-cbb7b18753cd" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "96b16742-194b-4653-9634-825e75459671" + "01c41df8-c2ce-4147-84bb-a686a3468e79" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021424Z:96b16742-194b-4653-9634-825e75459671" + "WESTUS:20200207T010005Z:01c41df8-c2ce-4147-84bb-a686a3468e79" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:23 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -400,7 +400,7 @@ ], "Names": { "WsdlTest": [ - "aid8927" + "aid1702" ] }, "Variables": { @@ -408,7 +408,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/BackupAndRestoreService.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/BackupAndRestoreService.json index cd5cc6fa84db..3cf6bc1aba59 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/BackupAndRestoreService.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/BackupAndRestoreService.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91a89548-4abe-4582-baf3-f9e63b248087" + "49bd9354-53a2-4b1c-b323-f17d53026288" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,20 +23,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:04:49 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "6b19920c-3d28-4806-a798-44e9c3a18084" + "546b4e06-9043-4e28-8601-3a081c81bf64" ], "x-ms-correlation-request-id": [ - "6b19920c-3d28-4806-a798-44e9c3a18084" + "546b4e06-9043-4e28-8601-3a081c81bf64" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073034Z:6b19920c-3d28-4806-a798-44e9c3a18084" + "WESTUS:20200207T050450Z:546b4e06-9043-4e28-8601-3a081c81bf64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:30:33 GMT" + "Content-Length": [ + "2156" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg6864?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzY4NjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg1085?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzEwODU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e3f180ab-9eff-463e-8f6a-9825307f5ea1" + "246ee86b-c9c2-4cb1-8782-67374314bd84" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,20 +89,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:04:51 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "f3c29626-69b3-4d25-b775-b908fc8e186a" + "4265eb6b-ad3f-41a0-babe-c28429f9efbd" ], "x-ms-correlation-request-id": [ - "f3c29626-69b3-4d25-b775-b908fc8e186a" + "4265eb6b-ad3f-41a0-babe-c28429f9efbd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073034Z:f3c29626-69b3-4d25-b775-b908fc8e186a" + "WESTUS:20200207T050451Z:4265eb6b-ad3f-41a0-babe-c28429f9efbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:30:34 GMT" - ], "Content-Length": [ "182" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864\",\r\n \"name\": \"sdktestrg6864\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085\",\r\n \"name\": \"sdktestrg1085\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a99f7f1-fe5a-4e11-b606-07a0e2d2553f" + "74110115-4450-4db7-85db-f41c7946c090" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,45 +155,45 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:04:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzSIs=\"" + "\"AAAAAAABqSM=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c57ee9d1-2031-46b5-a1b6-6040c6d60dc0", - "566f9d77-bb31-4e1f-8add-54a68eb3a26e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5edd7239-ff56-4766-903f-73c806453279", + "f0762487-1191-458f-98ca-e550ef6453aa" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "4614768e-ae7a-4345-bdd9-62c8c9f828bd" + "6b273741-3df5-449c-bc90-30362c60c37d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073036Z:4614768e-ae7a-4345-bdd9-62c8c9f828bd" + "WESTUS:20200207T050455Z:6b273741-3df5-449c-bc90-30362c60c37d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:30:35 GMT" - ], "Content-Length": [ - "1132" + "1158" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,2753 +202,2747 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzSIs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441\",\r\n \"name\": \"sdktestapim7441\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqSM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-07T05:04:54.1810272Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:05:56 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cc0ffc0-fc93-4bbf-9bfc-b097d4f9ef90" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3d9b43b8-bf14-41cb-8fe0-c1fc5215bd6b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "6a67552a-2fb7-4faa-aa5f-31a0d6d5d65f" + "4e6bdc5e-c005-4fd6-8fd2-54a491676778" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073136Z:6a67552a-2fb7-4faa-aa5f-31a0d6d5d65f" + "WESTUS:20200207T050556Z:4e6bdc5e-c005-4fd6-8fd2-54a491676778" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:31:36 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:06:55 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5550ef4-8c73-4bc6-9ae5-4556991e31ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "004f515f-5e31-4c5e-896d-f3f8d7728307" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "c93985d1-56c2-4e76-b430-0b3c3caa7251" + "f64bad1e-6361-4347-89d2-ee9214a6c91f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073237Z:c93985d1-56c2-4e76-b430-0b3c3caa7251" + "WESTUS:20200207T050656Z:f64bad1e-6361-4347-89d2-ee9214a6c91f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:32:36 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:07:56 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fa8e40b-faed-46f8-b1aa-8bf74d2c2dd9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9eda1989-4c58-4b71-83e0-5eba15d08edb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "d3f67511-97ec-4ffa-9076-d5933557d358" + "05500f3a-71e1-4b23-9669-9e9707d87df6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073337Z:d3f67511-97ec-4ffa-9076-d5933557d358" + "WESTUS:20200207T050757Z:05500f3a-71e1-4b23-9669-9e9707d87df6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:33:36 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:08:56 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7df1d3c-9fb3-471f-9267-76f9b90a2fde" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a011c1df-c1b9-48dc-ba6e-cb19e17e2143" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "f3e982cd-363e-4ded-a426-a76cb8614867" + "6485eaab-095e-4138-9fd7-77d2beef6f38" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073437Z:f3e982cd-363e-4ded-a426-a76cb8614867" + "WESTUS:20200207T050857Z:6485eaab-095e-4138-9fd7-77d2beef6f38" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:34:37 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:09:57 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64602f3a-d9ca-47b6-9252-bbe4d6ea75df" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "81aed6e9-f1aa-45df-bd07-9c3cf1362c8c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "f1d12f07-d16c-4349-80c0-c20a3bc2e3d1" + "f2fd9ad4-ca4c-4ef4-9298-bd8b3e8f6f45" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073538Z:f1d12f07-d16c-4349-80c0-c20a3bc2e3d1" + "WESTUS:20200207T050957Z:f2fd9ad4-ca4c-4ef4-9298-bd8b3e8f6f45" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:35:37 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:10:57 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f467f41-a713-43cd-9c80-596044021f1e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7738e0c9-e35b-4c94-af61-0b4434930c27" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "f7edec59-d5a6-4a76-aa51-a12fc5b614ae" + "b6d80901-ad1b-4795-a063-7beee26198aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073638Z:f7edec59-d5a6-4a76-aa51-a12fc5b614ae" + "WESTUS:20200207T051058Z:b6d80901-ad1b-4795-a063-7beee26198aa" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:36:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:11:58 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90456f30-ef04-454c-8d9f-618203eee89e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "01ea2067-315d-4f0e-9609-ac0cd2a8ff1f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "8ca50834-c16f-4074-80be-1edcb0fd5596" + "7ebb7ef4-84a7-40c0-8404-e6798f2a42ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073738Z:8ca50834-c16f-4074-80be-1edcb0fd5596" + "WESTUS:20200207T051158Z:7ebb7ef4-84a7-40c0-8404-e6798f2a42ea" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:37:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:12:58 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65c9ae0a-9a6f-4c98-8257-c51f867ef6b0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "63aa1f34-bf99-4310-87b0-23a0508e905e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "1a60351e-2a83-4857-bc05-8e82c568331d" + "047f87eb-93b2-48a1-9be1-3a305673b0b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073839Z:1a60351e-2a83-4857-bc05-8e82c568331d" + "WESTUS:20200207T051259Z:047f87eb-93b2-48a1-9be1-3a305673b0b8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:38:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:13:58 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dcc2c106-9fcb-446a-b9df-e2aa0b6f7e18" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8fb77e41-4ba1-485e-a754-88363068081e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "b9c7bed2-ab99-40e4-9a39-5cea07f53ab4" + "6f819e44-ae77-4181-b958-e78e432f545c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073939Z:b9c7bed2-ab99-40e4-9a39-5cea07f53ab4" + "WESTUS:20200207T051359Z:6f819e44-ae77-4181-b958-e78e432f545c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:39:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:14:59 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "608dd641-6dcb-432c-8d48-e6234e56e0ad" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cfe59733-25e6-4e66-bf66-e99252b543ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-correlation-request-id": [ - "f2d02b1f-7f08-4a6f-a761-7354cf57e246" + "dbf8b22f-3d4d-4291-b4cf-a8885d36297a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074039Z:f2d02b1f-7f08-4a6f-a761-7354cf57e246" + "WESTUS:20200207T051459Z:dbf8b22f-3d4d-4291-b4cf-a8885d36297a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:40:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:15:58 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd9794fe-9b4b-41d5-87fc-a4d4c8190881" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cd01b9e4-2e8f-4bc6-9953-d2cc1d3c3fae" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "42cb7621-fe0b-4587-997e-8a1ceafdead8" + "abf08b43-9640-456c-ba37-bc14280d8e93" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074140Z:42cb7621-fe0b-4587-997e-8a1ceafdead8" + "WESTUS:20200207T051559Z:abf08b43-9640-456c-ba37-bc14280d8e93" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:41:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:16:59 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "296fc5c8-a0cc-423e-8a50-a945996c8a7a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4a5ca1e1-e3b3-4795-a6b1-e806ef544f20" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "646dded9-b798-49ac-a799-cd7f44d5aa3a" + "de31c709-784f-494d-8e50-5551065e5c51" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074240Z:646dded9-b798-49ac-a799-cd7f44d5aa3a" + "WESTUS:20200207T051700Z:de31c709-784f-494d-8e50-5551065e5c51" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:42:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:18:00 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3cfa4f99-8689-4872-96d0-5c2f0f23797e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1d17622f-7aef-4b17-9806-bec782ae881d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "2f7f36af-5ddc-4116-85ed-4c8817412c02" + "aa61d8b1-065a-423e-a0a7-7a92e574f90c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074340Z:2f7f36af-5ddc-4116-85ed-4c8817412c02" + "WESTUS:20200207T051801Z:aa61d8b1-065a-423e-a0a7-7a92e574f90c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:43:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:19:01 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6eb45585-0ca5-4f20-9667-0f300f2eaabe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e8944fc1-1e56-4802-ac35-4c6f870439a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-correlation-request-id": [ - "fd358c0a-6c3a-43b4-a839-161be10ed26d" + "9cf371aa-5ae8-428b-8196-c61e940fba5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074441Z:fd358c0a-6c3a-43b4-a839-161be10ed26d" + "WESTUS:20200207T051901Z:9cf371aa-5ae8-428b-8196-c61e940fba5b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:44:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:20:01 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0663c760-0aa0-4fc4-ad83-2b60a9bfede4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a0ed7767-bd96-48c5-81c3-96b030608ec2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "da69a6e6-40d7-47df-b079-1f3274664e98" + "8658c4a9-dcf7-4041-b646-159b1b025bad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074541Z:da69a6e6-40d7-47df-b079-1f3274664e98" + "WESTUS:20200207T052002Z:8658c4a9-dcf7-4041-b646-159b1b025bad" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:45:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:21:02 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5aeebb9-60e1-4917-94d3-a74b6283d743" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9852cec0-726b-406e-8bba-6cd93dd2cb83" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-correlation-request-id": [ - "a3621819-12d8-4c3f-b6af-589d200c09d9" + "80447e89-6252-4015-a68c-bfe368448a2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074641Z:a3621819-12d8-4c3f-b6af-589d200c09d9" + "WESTUS:20200207T052102Z:80447e89-6252-4015-a68c-bfe368448a2c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:46:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:22:02 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98833a0c-3169-4b57-828f-ba8d1071085b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ada82092-4096-4dfe-b069-45278603708f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-correlation-request-id": [ - "5798e6b8-b88c-41d8-b4f8-0835d9a09ba7" + "af9c4350-0be7-4a89-af96-f6bd84ca1f5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074742Z:5798e6b8-b88c-41d8-b4f8-0835d9a09ba7" + "WESTUS:20200207T052202Z:af9c4350-0be7-4a89-af96-f6bd84ca1f5c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:47:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:23:02 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0e25f22-db57-4191-92b7-7ec78f29b297" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5257ba4c-1cc7-422c-bc21-a2ac93ac0095" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-correlation-request-id": [ - "9c6a63e6-f667-462b-b7af-c6cdb824bb34" + "9a981901-1aab-4023-be22-33e518b143c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074842Z:9c6a63e6-f667-462b-b7af-c6cdb824bb34" + "WESTUS:20200207T052303Z:9a981901-1aab-4023-be22-33e518b143c2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:48:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:24:03 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22938bf7-614b-4818-88b0-0c9e4c10f26c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a613f893-361c-4049-a15d-b9d69d130cd0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-correlation-request-id": [ - "e83f40b2-aab8-4ba0-9ee9-c979d3bdb842" + "c2bc86df-2a7b-4da5-aca8-a09654427b60" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T074942Z:e83f40b2-aab8-4ba0-9ee9-c979d3bdb842" + "WESTUS:20200207T052403Z:c2bc86df-2a7b-4da5-aca8-a09654427b60" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:49:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:25:03 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e58e71f5-dd78-413e-abe8-bd6fd1de9379" + "5369dd8c-e210-4087-bd66-b5eb6260a29c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11998" ], "x-ms-correlation-request-id": [ - "4453339f-150b-4ad3-ba0c-c3808c25c8bb" + "df306434-87ed-406a-aafd-2a5619ad14b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075043Z:4453339f-150b-4ad3-ba0c-c3808c25c8bb" + "WESTUS:20200207T052504Z:df306434-87ed-406a-aafd-2a5619ad14b8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:50:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:26:04 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a99be4a5-680c-4d6d-b2ba-eec756f7b9a7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4fc3565a-41c5-4c14-baf5-d61cbb8c8604" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11997" ], "x-ms-correlation-request-id": [ - "d57db46e-1cc5-4b6e-b8bf-398acd9ef922" + "53cb9201-4f20-4ee9-8a6d-fb12b90fc1e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075143Z:d57db46e-1cc5-4b6e-b8bf-398acd9ef922" + "WESTUS:20200207T052604Z:53cb9201-4f20-4ee9-8a6d-fb12b90fc1e0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:51:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:27:05 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1adf61da-e9a0-48bb-a329-3f3927e8f8bb" + "26a232fe-3dd4-45ca-b4fe-4b67c13616b4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "3071c9cf-048b-4081-8f82-4291a38a9e0c" + "cd9f218c-aa18-4f27-be7d-498724624e1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075243Z:3071c9cf-048b-4081-8f82-4291a38a9e0c" + "WESTUS:20200207T052705Z:cd9f218c-aa18-4f27-be7d-498724624e1b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:52:43 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:28:04 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c47f4925-7e85-46ff-932e-4f9544beae56" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "af8e866b-b1ae-48f8-b9e8-9204c66f085b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-correlation-request-id": [ - "51ddcafd-d032-47a4-b189-e2fb2fdfa95b" + "aec1c440-91ec-484b-a5a4-583e048988b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075344Z:51ddcafd-d032-47a4-b189-e2fb2fdfa95b" + "WESTUS:20200207T052805Z:aec1c440-91ec-484b-a5a4-583e048988b2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:53:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:29:05 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e096ef2-52df-4584-881b-a2083faccc09" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3c4a48be-a7fa-41e8-9894-fa60e0189fd8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-correlation-request-id": [ - "9f547797-f002-4b91-944c-8627d6cf1ac9" + "b16d0c74-d2cd-4e1a-8c4b-121ac9af6823" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075444Z:9f547797-f002-4b91-944c-8627d6cf1ac9" + "WESTUS:20200207T052906Z:b16d0c74-d2cd-4e1a-8c4b-121ac9af6823" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:54:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:30:05 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "853df330-9d55-4b98-b990-71ed189b47ec" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "91985fd3-da0f-44e6-b83e-769ca81ab44b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11999" ], "x-ms-correlation-request-id": [ - "bde2f6e5-7737-4982-9aa1-814a2685b370" + "2f30e560-c484-4cd1-9dab-566873f66a9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075545Z:bde2f6e5-7737-4982-9aa1-814a2685b370" + "WESTUS:20200207T053006Z:2f30e560-c484-4cd1-9dab-566873f66a9e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:55:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:31:06 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af7e9d29-241f-4c1c-9098-5809c79c8d98" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0bde884e-f27f-4975-a3a2-bf798087a8be" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-correlation-request-id": [ - "97fca5c7-14e4-4481-8f2f-5e6b01601685" + "f89fc6b2-3e63-4368-93fe-adcc6e07eb66" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075645Z:97fca5c7-14e4-4481-8f2f-5e6b01601685" + "WESTUS:20200207T053106Z:f89fc6b2-3e63-4368-93fe-adcc6e07eb66" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:56:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:32:06 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfd98911-5278-4de8-9b8f-4069114765af" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2aa05bde-ebe3-46f9-b115-1fc9d6358065" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11998" ], "x-ms-correlation-request-id": [ - "dfa6eddd-046b-4249-8540-d2be9feaf458" + "aab40f86-7a0e-46a2-bc83-ef7bac380b37" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075745Z:dfa6eddd-046b-4249-8540-d2be9feaf458" + "WESTUS:20200207T053207Z:aab40f86-7a0e-46a2-bc83-ef7bac380b37" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:57:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:33:07 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], - "x-ms-request-id": [ - "1ea6381b-1028-43c7-a89a-ecf99ceeba27" + "Retry-After": [ + "60" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f0fbf503-2d60-440c-b7cc-659f3e6d9f8d" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-correlation-request-id": [ - "3cc2c501-8dfa-4dba-b452-9b3cf4082b29" + "1c759c13-d5e8-4dd8-b122-431f8184d033" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075846Z:3cc2c501-8dfa-4dba-b452-9b3cf4082b29" + "WESTUS:20200207T053307Z:1c759c13-d5e8-4dd8-b122-431f8184d033" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:58:45 GMT" - ], "Content-Length": [ - "2046" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzSa0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/checkNameAvailability?api-version=2016-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxNi0wNS0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdkapimbackup6644\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3a61a8f6-cc4a-4c64-8219-c3ad872f9ead" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "83" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:34:07 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "d55f96d7-8500-48c5-927e-4559713555be" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "x-ms-request-id": [ + "32f3e9ef-a409-4692-b2ab-6d7b2ea6a862" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "d29f9f2c-973b-494f-918a-2eac0b8a5258" + "de00448b-5277-4dc6-b0bd-2a72fae15a49" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075846Z:d29f9f2c-973b-494f-918a-2eac0b8a5258" + "WESTUS:20200207T053407Z:de00448b-5277-4dc6-b0bd-2a72fae15a49" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:58:45 GMT" - ], "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6644?api-version=2016-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zZGthcGltYmFja3VwNjY0ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"Central US\"\r\n}", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7f432451-8f93-4772-9a3f-3109d4ff5c38" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "100" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:35:07 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/locations/centralus/asyncoperations/ef1f0e2e-f1d6-4df6-92da-165226fad18d?monitor=true&api-version=2016-05-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ - "17" + "60" ], - "x-ms-request-id": [ - "ef1f0e2e-f1d6-4df6-92da-165226fad18d" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-request-id": [ + "89eb818b-9e9b-4e0e-885d-4b8ccccfeb3d" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-correlation-request-id": [ - "5e4f9a49-c46b-4835-93bd-b40f5f549b5a" + "947b8773-f1a8-49c1-9c7e-e806ac3a330f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075847Z:5e4f9a49-c46b-4835-93bd-b40f5f549b5a" + "WESTUS:20200207T053508Z:947b8773-f1a8-49c1-9c7e-e806ac3a330f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:58:47 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/locations/centralus/asyncoperations/ef1f0e2e-f1d6-4df6-92da-165226fad18d?monitor=true&api-version=2016-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvY2VudHJhbHVzL2FzeW5jb3BlcmF0aW9ucy9lZjFmMGUyZS1mMWQ2LTRkZjYtOTJkYS0xNjUyMjZmYWQxOGQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMDUtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:36:07 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "13ae0fb1-1866-4530-8b09-57fdecd7e5c9" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "ab637e2f-f62e-4209-bd91-057758acfb5c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11998" ], "x-ms-correlation-request-id": [ - "61c01908-92fa-494a-af54-4e8eccd34900" + "deb4c39d-edf8-4ee7-ad86-e19504929433" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075905Z:61c01908-92fa-494a-af54-4e8eccd34900" + "WESTUS:20200207T053608Z:deb4c39d-edf8-4ee7-ad86-e19504929433" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:59:04 GMT" - ], "Content-Length": [ - "957" - ], - "Content-Type": [ - "application/json" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6644\",\r\n \"name\": \"sdkapimbackup6644\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-11T07:58:47.3101924Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-11T07:58:47.2008064Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sdkapimbackup6644.blob.core.windows.net/\",\r\n \"queue\": \"https://sdkapimbackup6644.queue.core.windows.net/\",\r\n \"table\": \"https://sdkapimbackup6644.table.core.windows.net/\",\r\n \"file\": \"https://sdkapimbackup6644.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6644/listKeys?api-version=2016-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zZGthcGltYmFja3VwNjY0NC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA1LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a025db14-1173-4d57-a4e9-73d08ebbbf22" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:37:08 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "516295af-a85c-489c-a07b-195618f2f43d" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "7ec06187-b426-44b5-aab1-f21e65a06ad1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "fd2d2a57-1aa6-4df3-8af7-77f4366c7d51" + "1538bfb8-0eba-4f82-8715-1ce3367c55e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075905Z:fd2d2a57-1aa6-4df3-8af7-77f4366c7d51" + "WESTUS:20200207T053709Z:1538bfb8-0eba-4f82-8715-1ce3367c55e0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:59:04 GMT" - ], "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"mWz1z1+USUmXGy8JZeGiKrudW3iMvzmsWLwtg3EAZZYldKPaTQBbnZ4CWW+iL2x0NeBKgtIoeekx/O6M40t+iA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"dtT2b/v6VnZd2BDvFOCvNTVH+OFoLWFoqe9ivkWpm9DLlwvkE45CzA8QRfrTwNkmqaSgkOgTZG7BYnjOLKuACQ==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/backup?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL2JhY2t1cD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"storageAccount\": \"sdkapimbackup6644\",\r\n \"accessKey\": \"mWz1z1+USUmXGy8JZeGiKrudW3iMvzmsWLwtg3EAZZYldKPaTQBbnZ4CWW+iL2x0NeBKgtIoeekx/O6M40t+iA==\",\r\n \"containerName\": \"apimbackupcontainer\",\r\n \"backupName\": \"apimbackup.zip\"\r\n}", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f222a5b9-f21e-49fd-9b07-1de89b805ff9" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "231" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:38:08 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791//operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75c4afd3-fe1b-43dd-8e23-58f6ee8b3a2d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "229210e3-1568-4d41-a4d4-c71d4b41d555" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "d72a07e9-6bdc-4b1d-9ea0-b69bb61bc6cc" + "8200fb45-2f67-467d-bd11-d4e0ae16ca26" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T075906Z:d72a07e9-6bdc-4b1d-9ea0-b69bb61bc6cc" + "WESTUS:20200207T053809Z:8200fb45-2f67-467d-bd11-d4e0ae16ca26" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:59:05 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791//operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxLy9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMHlOemt4WDBKaFkydDFjRjgxTkRkaE9USTJNQT09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:39:09 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d979cb49-5265-49de-8946-278ae91a8feb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "48a67973-a371-4a12-8d64-78c91e89fa93" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-correlation-request-id": [ - "9830a579-785a-437f-860c-da44c9214bef" + "4f806277-887e-4b61-b3f0-772adcb24400" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080006Z:9830a579-785a-437f-860c-da44c9214bef" + "WESTUS:20200207T053909Z:4f806277-887e-4b61-b3f0-772adcb24400" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:00:06 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:40:09 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e988fa0-fdf6-44b6-bd30-5e5254093153" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1df58ea7-00fe-4cdd-9ff0-8e7509714a91" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11999" ], "x-ms-correlation-request-id": [ - "fdf3c848-92f2-4e68-82dd-1a7c5a38258d" + "1c8ab5bd-0ce7-451d-8ae3-9e36317dd629" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080106Z:fdf3c848-92f2-4e68-82dd-1a7c5a38258d" + "WESTUS:20200207T054010Z:1c8ab5bd-0ce7-451d-8ae3-9e36317dd629" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:01:05 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:41:10 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f77e7eb5-509d-4ac6-8d0d-5edc19ba1eec" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f82944c9-5b61-4516-8d51-59a7588c6cfd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11999" ], "x-ms-correlation-request-id": [ - "4ff0210f-7ded-4a34-83af-d2b65046a5d1" + "194d9f2a-c5cf-499d-b9b7-7cc228164873" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080206Z:4ff0210f-7ded-4a34-83af-d2b65046a5d1" + "WESTUS:20200207T054111Z:194d9f2a-c5cf-499d-b9b7-7cc228164873" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:02:06 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:42:11 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36e2c734-3f09-4b46-9947-79b8d5aad8c4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c8f86492-74a7-4283-a9f4-8e5a9a6bb1fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11998" ], "x-ms-correlation-request-id": [ - "04491515-d49c-4175-8374-6209d23f0482" + "1d864b31-2a2e-4228-9a22-b7acff3b890e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080307Z:04491515-d49c-4175-8374-6209d23f0482" + "WESTUS:20200207T054211Z:1d864b31-2a2e-4228-9a22-b7acff3b890e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:03:06 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:43:11 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb842d0b-0483-414e-a704-49df6fd62b49" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "18aa0b4a-9d1d-412a-9cab-1326b8ba979e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11997" ], "x-ms-correlation-request-id": [ - "e33f930c-b6df-43c3-915f-1391fd040c18" + "c699def5-4ef3-45d8-b2fc-ec11b0eff788" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080407Z:e33f930c-b6df-43c3-915f-1391fd040c18" + "WESTUS:20200207T054311Z:c699def5-4ef3-45d8-b2fc-ec11b0eff788" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:04:07 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:44:11 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c4562b8-5096-4f5a-ad5a-42340112dc97" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ddda6214-3ab0-4365-999e-5eaea73de010" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11996" ], "x-ms-correlation-request-id": [ - "79913ed5-3d2b-477f-ba7c-2289c6aa9270" + "c051ef60-641e-47ef-a3e4-69a324bfc412" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080507Z:79913ed5-3d2b-477f-ba7c-2289c6aa9270" + "WESTUS:20200207T054412Z:c051ef60-641e-47ef-a3e4-69a324bfc412" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:05:06 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:45:12 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28d75bce-6adf-424d-8b7e-53dfe783b041" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2f9dfc5a-af77-4f17-a218-85b6a92dbed7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11999" ], "x-ms-correlation-request-id": [ - "590c0dee-9d78-4f59-9741-5ed17826858c" + "3062ceb8-7bcd-43b7-9e54-beec9b9ebd52" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080607Z:590c0dee-9d78-4f59-9741-5ed17826858c" + "WESTUS:20200207T054512Z:3062ceb8-7bcd-43b7-9e54-beec9b9ebd52" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:06:07 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9BY3RfZDk2YjZkNDE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlCWTNSZlpEazJZalprTkRFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:46:13 GMT" + ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" - ], - "Retry-After": [ - "60" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c42e9437-d581-48cc-928c-e0abc6a44651" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "10f0d38d-cdc5-4731-9640-ae99fbab1469" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11999" ], "x-ms-correlation-request-id": [ - "2eb06fd0-8887-4687-a33e-04b76a1e8a36" + "59b798dd-2195-42ec-aeb4-57a7a49ab636" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080708Z:2eb06fd0-8887-4687-a33e-04b76a1e8a36" + "WESTUS:20200207T054613Z:59b798dd-2195-42ec-aeb4-57a7a49ab636" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:07:07 GMT" + "Content-Length": [ + "2117" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441\",\r\n \"name\": \"sdktestapim7441\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqUA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T05:04:54.1810272Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7441.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7441-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7441.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim7441.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7441.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7441.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim7441.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.180.23\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/checkNameAvailability?api-version=2016-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxNi0wNS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdkapimbackup1775\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "027e2925-2539-4b95-8068-aa9f030a5e67" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Pragma": [ + "Date": [ + "Fri, 07 Feb 2020 05:46:12 GMT" + ], + "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Retry-After": [ - "60" + "x-ms-request-id": [ + "88b94e99-3e53-40f8-bef7-77732a949330" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "323e8cc5-3274-4e34-bbf7-d7e3eeb3d61a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11999" ], "x-ms-correlation-request-id": [ - "e583cd48-563d-443c-8988-d897ff49fb71" + "5e46b810-de61-41d3-bce5-81364167f266" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080808Z:e583cd48-563d-443c-8988-d897ff49fb71" + "WESTUS:20200207T054613Z:5e46b810-de61-41d3-bce5-81364167f266" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:08:07 GMT" + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.Storage/storageAccounts/sdkapimbackup1775?api-version=2016-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zZGthcGltYmFja3VwMTc3NT9hcGktdmVyc2lvbj0yMDE2LTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "d74c5a33-0a4c-490e-9924-88a6c1f0937e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "100" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:46:15 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/locations/centralus/asyncoperations/d68b32b5-b0dd-431a-b085-da1b386af492?monitor=true&api-version=2016-05-01" ], "Retry-After": [ - "60" + "17" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "cfd234fb-d5f7-4786-a4e4-e59fb9f50bbc" + "d68b32b5-b0dd-431a-b085-da1b386af492" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "b561ce34-e3cf-4669-9b10-9cbb6ed37c0b" + "754e6fd9-8688-4d4f-b8d6-ecc3d8b7c538" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T080908Z:b561ce34-e3cf-4669-9b10-9cbb6ed37c0b" + "WESTUS:20200207T054615Z:754e6fd9-8688-4d4f-b8d6-ecc3d8b7c538" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:09:08 GMT" + "Content-Length": [ + "0" + ], + "Content-Type": [ + "text/plain; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/locations/centralus/asyncoperations/d68b32b5-b0dd-431a-b085-da1b386af492?monitor=true&api-version=2016-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvY2VudHJhbHVzL2FzeW5jb3BlcmF0aW9ucy9kNjhiMzJiNS1iMGRkLTQzMWEtYjA4NS1kYTFiMzg2YWY0OTI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:46:32 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ee437875-f3d3-429b-b3f4-1e23b5396253" + "fa81f73a-3051-491d-bc69-310824738424" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11998" ], "x-ms-correlation-request-id": [ - "bd3ed4fc-abb0-4be6-b163-8b368119adae" + "1d6754e5-ef5b-4bb2-9f31-54b52830df27" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081008Z:bd3ed4fc-abb0-4be6-b163-8b368119adae" + "WESTUS:20200207T054632Z:1d6754e5-ef5b-4bb2-9f31-54b52830df27" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:10:08 GMT" - ], "Content-Length": [ - "2046" + "957" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzSoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.Storage/storageAccounts/sdkapimbackup1775\",\r\n \"name\": \"sdkapimbackup1775\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-07T05:46:15.2688909Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-07T05:46:15.2220064Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sdkapimbackup1775.blob.core.windows.net/\",\r\n \"queue\": \"https://sdkapimbackup1775.queue.core.windows.net/\",\r\n \"table\": \"https://sdkapimbackup1775.table.core.windows.net/\",\r\n \"file\": \"https://sdkapimbackup1775.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.Storage/storageAccounts/sdkapimbackup1775/listKeys?api-version=2016-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zZGthcGltYmFja3VwMTc3NS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA1LTAx", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fb659c55-960c-4e48-9d1a-6106bf4c1040" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:46:32 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c8155009-0605-4f4c-b20e-7dbb32ebc1c6" + "792cde36-a2a0-42dc-b7aa-e5d7173345e5" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "x-ms-correlation-request-id": [ - "97f284b1-c6bc-4aff-ad5c-bd16e79e9e47" + "4e25e10b-7079-4441-995b-beaaa0431905" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081009Z:97f284b1-c6bc-4aff-ad5c-bd16e79e9e47" + "WESTUS:20200207T054633Z:4e25e10b-7079-4441-995b-beaaa0431905" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:10:08 GMT" - ], "Content-Length": [ - "2046" + "288" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzSoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"LuEzXLQrM0iG6DnJZhodObmXVElfxXgA8jWJlXIn0kwEAw0Vc+WrE5YdB57+fjA9/EAjXKadabom0a/0k/iDLQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"vQzrdTX6Lo0cjlLcivJNobDq48Dvaz5YcdOIWHp0ZFm/ZLhAglG9kdab9Qnw3HBePsZV358BJDOcowyjWyJs1w==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/restore?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/backup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL2JhY2t1cD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"storageAccount\": \"sdkapimbackup6644\",\r\n \"accessKey\": \"mWz1z1+USUmXGy8JZeGiKrudW3iMvzmsWLwtg3EAZZYldKPaTQBbnZ4CWW+iL2x0NeBKgtIoeekx/O6M40t+iA==\",\r\n \"containerName\": \"apimbackupcontainer\",\r\n \"backupName\": \"apimbackup.zip\"\r\n}", + "RequestBody": "{\r\n \"storageAccount\": \"sdkapimbackup1775\",\r\n \"accessKey\": \"LuEzXLQrM0iG6DnJZhodObmXVElfxXgA8jWJlXIn0kwEAw0Vc+WrE5YdB57+fjA9/EAjXKadabom0a/0k/iDLQ==\",\r\n \"containerName\": \"apimbackupcontainer\",\r\n \"backupName\": \"apimbackup.zip\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "73dae1dc-9f18-41d6-95a3-6a7933611bc2" + "6cb99693-d8e2-4ee1-a980-5d3c94575811" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2961,935 +2955,1301 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:46:33 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791//operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441//operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15d3be89-3fd0-44a2-85e6-896db7a95f0a" + "5b021cf6-d36b-4d40-b079-8c9b77ddccdf" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "25428f44-8b00-4173-bfb2-aff546bda701" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T054633Z:25428f44-8b00-4173-bfb2-aff546bda701" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441//operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxLy9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uTmthM1JsYzNSaGNHbHROelEwTVY5Q1lXTnJkWEJmTnpBd1pqUm1OalU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 05:47:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40fba0da-4b13-4411-b76a-336fd5f929a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "658f0427-fd13-423f-bd4f-31508e0d638a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T054734Z:658f0427-fd13-423f-bd4f-31508e0d638a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlDWVdOcmRYQmZOekF3WmpSbU5qVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 05:48:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5bbee0e0-0fa1-4138-8128-80fe0edd3390" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "129b6e51-ece5-4acb-95ab-ade71f88824c" + "051c33e5-6689-4e93-b4e6-25baa99046c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081010Z:129b6e51-ece5-4acb-95ab-ade71f88824c" + "WESTUS:20200207T054834Z:051c33e5-6689-4e93-b4e6-25baa99046c4" ], "X-Content-Type-Options": [ "nosniff" ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlDWVdOcmRYQmZOekF3WmpSbU5qVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Thu, 11 Apr 2019 08:10:09 GMT" + "Fri, 07 Feb 2020 05:49:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6269e29f-21da-49cc-85ff-ce0a09c688c5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "824e5b2b-63b4-460a-8358-08f207031441" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T054935Z:824e5b2b-63b4-460a-8358-08f207031441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlDWVdOcmRYQmZOekF3WmpSbU5qVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 05:50:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "43c243c0-f38c-4cc2-aca7-9cbbdf5b6969" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b329a50a-4c34-4b9e-b068-3aa14e7f8f77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T055035Z:b329a50a-4c34-4b9e-b068-3aa14e7f8f77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlDWVdOcmRYQmZOekF3WmpSbU5qVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 05:51:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "821bdbfd-db29-43d7-a474-454e2b79c985" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ea9c56de-4e6f-45ff-9d29-cb2e0d99d57b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T055136Z:ea9c56de-4e6f-45ff-9d29-cb2e0d99d57b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Length": [ "0" + ], + "Expires": [ + "-1" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791//operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxLy9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMHlOemt4WDFKbGMzUnZjbVZmTW1KaE9XSm1NVEk9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlDWVdOcmRYQmZOekF3WmpSbU5qVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:52:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae69dfe5-7431-40c4-931d-5fd1c1fa2512" + "e4c21a61-0c89-4b8e-863f-5b7bf101ffb9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a19bb4a6-a0ff-4ebd-840e-06980d221d3b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T055236Z:a19bb4a6-a0ff-4ebd-840e-06980d221d3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlDWVdOcmRYQmZOekF3WmpSbU5qVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 05:53:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff016e90-a492-4efa-99a0-01c1e04b95a6" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11999" ], "x-ms-correlation-request-id": [ - "3e63c4db-949e-4ddb-8b0b-2a8226adbb7f" + "479c9f0d-2381-4f86-9896-f04ae90d6714" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081110Z:3e63c4db-949e-4ddb-8b0b-2a8226adbb7f" + "WESTUS:20200207T055337Z:479c9f0d-2381-4f86-9896-f04ae90d6714" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:11:09 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlDWVdOcmRYQmZOekF3WmpSbU5qVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:54:36 GMT" + ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" - ], - "Retry-After": [ - "60" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08860a9d-912f-4c6a-a001-e72e5985d494" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d1174c9f-cfa9-44b5-a7c9-4cf221da02f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11999" ], "x-ms-correlation-request-id": [ - "dcfb980e-3f23-4048-9ca9-fa695a73c634" + "db6c5980-6445-43f6-a334-b78eb18dddd7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081210Z:dcfb980e-3f23-4048-9ca9-fa695a73c634" + "WESTUS:20200207T055437Z:db6c5980-6445-43f6-a334-b78eb18dddd7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:12:10 GMT" + "Content-Length": [ + "2117" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441\",\r\n \"name\": \"sdktestapim7441\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqUU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T05:04:54.1810272Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7441.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7441-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7441.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim7441.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7441.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7441.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim7441.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.180.23\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9CYWNrdXBfNzAwZjRmNjU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlDWVdOcmRYQmZOekF3WmpSbU5qVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:54:36 GMT" + ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" - ], - "Retry-After": [ - "60" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab0e6d2e-7315-4638-aa0e-db5c05f76e3a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cbc81a2b-8a85-48c3-a4a5-149748e5bdb2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11998" ], "x-ms-correlation-request-id": [ - "e2565bf4-874f-46e1-8b8f-a6a51aaa645b" + "fe947153-948b-4517-9d2b-60925a1fc95a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081310Z:e2565bf4-874f-46e1-8b8f-a6a51aaa645b" + "WESTUS:20200207T055437Z:fe947153-948b-4517-9d2b-60925a1fc95a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:13:09 GMT" + "Content-Length": [ + "2117" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441\",\r\n \"name\": \"sdktestapim7441\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqUU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T05:04:54.1810272Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7441.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7441-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7441.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim7441.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7441.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7441.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim7441.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.180.23\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/restore?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"storageAccount\": \"sdkapimbackup1775\",\r\n \"accessKey\": \"LuEzXLQrM0iG6DnJZhodObmXVElfxXgA8jWJlXIn0kwEAw0Vc+WrE5YdB57+fjA9/EAjXKadabom0a/0k/iDLQ==\",\r\n \"containerName\": \"apimbackupcontainer\",\r\n \"backupName\": \"apimbackup.zip\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "59eb66c2-281f-4d33-9136-8b73e967a05f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "231" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:54:37 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441//operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c908b54e-6be3-40ea-8803-3b3724f5189f" + "872d57cc-83f0-47db-8d3e-553a340c9d35" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "4f228f16-2ef4-4e1b-967f-d4e2701ebbc4" + "cc7903b2-2494-44cf-bafb-b2dfd14275e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081411Z:4f228f16-2ef4-4e1b-967f-d4e2701ebbc4" + "WESTUS:20200207T055437Z:cc7903b2-2494-44cf-bafb-b2dfd14275e5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:14:10 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441//operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxLy9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uTmthM1JsYzNSaGNHbHROelEwTVY5U1pYTjBiM0psWHpFd09HVmxOemRpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:55:37 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33affe6e-f4de-40b5-9b3c-6458623e1b7e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "653aa396-272b-4491-a417-b692b33e6ccd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11997" ], "x-ms-correlation-request-id": [ - "ce75ae94-f7b1-4ab9-a214-693b0f6d6c55" + "aeeac68d-49ac-4c6a-a823-3838b13e6858" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081511Z:ce75ae94-f7b1-4ab9-a214-693b0f6d6c55" + "WESTUS:20200207T055538Z:aeeac68d-49ac-4c6a-a823-3838b13e6858" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:15:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:56:37 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01af52b3-1629-427f-bef0-376fa19d379f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8e251867-2f96-4050-b7b2-37b589bc56ac" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11997" ], "x-ms-correlation-request-id": [ - "21b79e13-c76e-403a-9880-1564c4468932" + "16a73e52-f978-4202-a3e2-1af9c3358314" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081611Z:21b79e13-c76e-403a-9880-1564c4468932" + "WESTUS:20200207T055638Z:16a73e52-f978-4202-a3e2-1af9c3358314" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:16:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:57:38 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d73c905c-2cd6-4c72-bad1-de0766cdddfb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0d45df62-f1a9-41b9-bf3b-7741b0bfa908" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11999" ], "x-ms-correlation-request-id": [ - "fdf0d2cc-e7d6-4ae4-8089-7f144bfefcad" + "b9d1ca83-c406-43d3-83f3-f16a561e3a78" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081711Z:fdf0d2cc-e7d6-4ae4-8089-7f144bfefcad" + "WESTUS:20200207T055738Z:b9d1ca83-c406-43d3-83f3-f16a561e3a78" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:17:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:58:38 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82e7ec53-f2f1-4baf-82ec-809e20e56cc3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "725bf3da-5b55-4031-8183-b95d01c94524" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11999" ], "x-ms-correlation-request-id": [ - "12d7f872-f291-461f-8849-4f7f5968628d" + "dbcdcb92-ce22-4155-9464-e43d4b3bfda3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081812Z:12d7f872-f291-461f-8849-4f7f5968628d" + "WESTUS:20200207T055839Z:dbcdcb92-ce22-4155-9464-e43d4b3bfda3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:18:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:59:38 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e43209ed-5e6f-48d8-a2d4-7f8580e3b81c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8f7ed92a-72da-48cd-9370-db75731f922d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11997" ], "x-ms-correlation-request-id": [ - "41b056e7-c91c-4b73-b55a-8e5d110ad2a2" + "48946ede-4725-445d-b50f-7190df6e8364" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T081912Z:41b056e7-c91c-4b73-b55a-8e5d110ad2a2" + "WESTUS:20200207T055939Z:48946ede-4725-445d-b50f-7190df6e8364" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:19:12 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:00:39 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16baf2b4-220f-447a-8bce-b79b2fe8b07c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "09503098-1ddf-4298-95bb-0011bfff15a2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11997" ], "x-ms-correlation-request-id": [ - "70ca3a56-3a99-4189-85ce-405fbf0171fb" + "02bbcb22-c038-45b5-ae85-173b6940524d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082013Z:70ca3a56-3a99-4189-85ce-405fbf0171fb" + "WESTUS:20200207T060039Z:02bbcb22-c038-45b5-ae85-173b6940524d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:20:13 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:01:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "046d3b7a-3480-4cef-b61b-ab5a32c51e85" + "61ee172b-f7a0-4525-af3c-bfcca6a891e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "484959ab-eec0-4ed2-b664-8ef3df370521" + "736a130a-3d11-484c-85a1-cdf3fae32384" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082132Z:484959ab-eec0-4ed2-b664-8ef3df370521" + "WESTUS:20200207T060140Z:736a130a-3d11-484c-85a1-cdf3fae32384" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:21:32 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:02:39 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf05e95b-7327-44c6-9a0d-72a6ae6e132d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a090dd15-fb11-4a45-b060-ea9175d4acb7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11996" ], "x-ms-correlation-request-id": [ - "894b1e92-73fe-4470-87a8-4f9bb90b0e72" + "cec73fbe-a473-436b-9174-5061f5cd258b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082232Z:894b1e92-73fe-4470-87a8-4f9bb90b0e72" + "WESTUS:20200207T060240Z:cec73fbe-a473-436b-9174-5061f5cd258b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:22:32 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:03:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "631236af-7fb8-4b2a-abed-b25f3a7cbb84" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9121b4bb-19d9-4a9c-bbb3-1ca88f0024c1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11995" ], "x-ms-correlation-request-id": [ - "6e198247-368a-4d0d-ad66-3f64fb04745d" + "0f2b3b02-3daf-45f6-a319-c95df3c19e4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082333Z:6e198247-368a-4d0d-ad66-3f64fb04745d" + "WESTUS:20200207T060340Z:0f2b3b02-3daf-45f6-a319-c95df3c19e4e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:23:32 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:04:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "333d03c2-581b-44e0-b832-022e865016e0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6c4ad2df-d2f5-4e10-bc91-85e4132e7292" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11998" ], "x-ms-correlation-request-id": [ - "845824a2-582b-4e0c-98c8-cb79ddb9ee46" + "87984c6a-a48f-4182-9124-e8a683df0f99" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082433Z:845824a2-582b-4e0c-98c8-cb79ddb9ee46" + "WESTUS:20200207T060441Z:87984c6a-a48f-4182-9124-e8a683df0f99" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:24:33 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:05:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ab024de-fb44-43b8-bbad-6aa9aaad9b2c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a9b28fcb-d02c-4dfd-9588-319a105f5b21" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11999" ], "x-ms-correlation-request-id": [ - "90eb5c5b-4120-480c-9cad-450488880f8e" + "f6cf02ef-2f1d-456d-b088-9ed87944350b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082534Z:90eb5c5b-4120-480c-9cad-450488880f8e" + "WESTUS:20200207T060541Z:f6cf02ef-2f1d-456d-b088-9ed87944350b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:25:33 GMT" - ], "Content-Length": [ - "2046" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3898,55 +4258,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzS9c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441\",\r\n \"name\": \"sdktestapim7441\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqWM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T05:04:54.1810272Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7441.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7441-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7441.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim7441.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7441.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7441.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim7441.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.180.23\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltNzQ0MV9SZXN0b3JlXzEwOGVlNzdi?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwODUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03NDQxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE56UTBNVjlTWlhOMGIzSmxYekV3T0dWbE56ZGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:05:41 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bb60418-9e55-47d0-9c27-262cf43c7546" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1a1b6053-5083-4b8f-8e20-9b6319c6c8ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11998" ], "x-ms-correlation-request-id": [ - "20be3a4b-1a71-48a3-bfd4-ff319f971b6a" + "8ce1759a-5750-40e1-baff-fba18474b520" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082534Z:20be3a4b-1a71-48a3-bfd4-ff319f971b6a" + "WESTUS:20200207T060541Z:8ce1759a-5750-40e1-baff-fba18474b520" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:25:34 GMT" - ], "Content-Length": [ - "2046" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3955,17 +4315,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzS9c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1085/providers/Microsoft.ApiManagement/service/sdktestapim7441\",\r\n \"name\": \"sdktestapim7441\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqWM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T05:04:54.1810272Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7441.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7441-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7441.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim7441.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7441.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7441.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim7441.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.180.23\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 } ], "Names": { "Initialize": [ - "sdktestapim2791", - "sdktestrg6864" + "sdktestapim7441", + "sdktestrg1085" ], "BackupAndRestoreService": [ - "sdkapimbackup6644" + "sdkapimbackup1775" ] }, "Variables": { @@ -3973,8 +4333,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim2791", + "ServiceName": "sdktestapim7441", "Location": "Central US", - "ResourceGroup": "sdktestrg6864" + "ResourceGroup": "sdktestrg1085" } } \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateInVirtualNetworkTests.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateInVirtualNetworkTests.json index f52be673f1fd..39789af69fb1 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateInVirtualNetworkTests.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateInVirtualNetworkTests.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7229f210-2cb7-48c8-bd38-9fea6959b8b3" + "e2764507-1f8b-4ef2-9e52-73b92394b212" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:20 GMT" + ], "Pragma": [ "no-cache" ], @@ -30,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "c79d0cad-78ba-4f23-b023-f5ea91059588" + "35f95c7d-0963-4459-a4e3-39d6e62c19e4" ], "x-ms-correlation-request-id": [ - "c79d0cad-78ba-4f23-b023-f5ea91059588" + "35f95c7d-0963-4459-a4e3-39d6e62c19e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053726Z:c79d0cad-78ba-4f23-b023-f5ea91059588" + "WESTUS:20200207T024521Z:35f95c7d-0963-4459-a4e3-39d6e62c19e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:25 GMT" + "Content-Length": [ + "2156" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg6588?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzY1ODg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg9342?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzkzNDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "81cb70a8-a82f-4cfd-a17f-95971efc8c71" + "eb8a4f3c-d6e6-4db3-820b-da2037434135" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,6 +89,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:22 GMT" + ], "Pragma": [ "no-cache" ], @@ -96,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "28e0126a-820f-4702-97ba-2c2c6fcfe44e" + "5151831c-6790-4263-b30c-096c549f68d9" ], "x-ms-correlation-request-id": [ - "28e0126a-820f-4702-97ba-2c2c6fcfe44e" + "5151831c-6790-4263-b30c-096c549f68d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053727Z:28e0126a-820f-4702-97ba-2c2c6fcfe44e" + "WESTUS:20200207T024522Z:5151831c-6790-4263-b30c-096c549f68d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:27 GMT" - ], "Content-Length": [ "182" ], @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588\",\r\n \"name\": \"sdktestrg6588\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342\",\r\n \"name\": \"sdktestrg9342\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDQ1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDk2ODY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"apimsubnet7750\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"apimsubnet2496\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "55cf4a5c-5ab9-488e-bfc1-77a0965a19c9" + "6db26669-2c9a-429b-8556-2781791b6932" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0.0" ], "Content-Type": [ @@ -155,42 +155,45 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:25 GMT" + ], "Pragma": [ "no-cache" ], "Retry-After": [ "3" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ae323786-50cc-41e2-8d72-bbe519667c70" + "06a0e9b6-7cd3-4b7c-8ab5-d880bebe27ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Network/locations/centralus/operations/ae323786-50cc-41e2-8d72-bbe519667c70?api-version=2017-03-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Network/locations/centralus/operations/06a0e9b6-7cd3-4b7c-8ab5-d880bebe27ea?api-version=2017-03-01" ], "x-ms-correlation-request-id": [ - "9d345a80-5d92-4ed9-9452-b4c43b58899c" + "00b91985-a7f8-49f9-933e-8fabf9d2edf1" + ], + "x-ms-arm-service-request-id": [ + "b1407a08-0f14-409f-914a-51f33feafcc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053729Z:9d345a80-5d92-4ed9-9452-b4c43b58899c" + "WESTUS:20200207T024525Z:00b91985-a7f8-49f9-933e-8fabf9d2edf1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:29 GMT" - ], "Content-Length": [ - "1064" + "1067" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,19 +202,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"apimvnet452\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452\",\r\n \"etag\": \"W/\\\"5a286be7-fe66-4947-991c-e73fef0916b7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"af10d335-425a-47fd-a3d6-0649c21b86f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apimsubnet7750\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"etag\": \"W/\\\"5a286be7-fe66-4947-991c-e73fef0916b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"apimvnet9686\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686\",\r\n \"etag\": \"W/\\\"cb8e64ef-8bd8-4d98-aa36-7b695dcb52b1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"32819039-56c5-4ed6-9afa-eefa86b4954f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apimsubnet2496\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"etag\": \"W/\\\"cb8e64ef-8bd8-4d98-aa36-7b695dcb52b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Network/locations/centralus/operations/ae323786-50cc-41e2-8d72-bbe519667c70?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYWUzMjM3ODYtNTBjYy00MWUyLThkNzItYmJlNTE5NjY3YzcwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Network/locations/centralus/operations/06a0e9b6-7cd3-4b7c-8ab5-d880bebe27ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMDZhMGU5YjYtN2NkMy00YjdjLThhYjUtZDg4MGJlYmUyN2VhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0.0" ] }, @@ -219,34 +222,37 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "bb5d8476-86fd-4d22-8e69-1ebe6b8629b5" + "6231ddbe-44f6-4979-a9cc-9cf098d55c24" ], "x-ms-correlation-request-id": [ - "00ce7a5a-8cb6-4a8e-80e4-c283df37b3cf" + "e2b0d42e-6951-43bb-a256-907b9c86d727" + ], + "x-ms-arm-service-request-id": [ + "d7d38442-d1e6-434b-9376-e6a9043cfdbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053732Z:00ce7a5a-8cb6-4a8e-80e4-c283df37b3cf" + "WESTUS:20200207T024528Z:e2b0d42e-6951-43bb-a256-907b9c86d727" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:32 GMT" - ], "Content-Length": [ "29" ], @@ -261,15 +267,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDQ1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDk2ODY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0.0" ] }, @@ -277,39 +283,42 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"330f4854-5201-464c-a19d-25a72b6771c4\"" + "W/\"283ed671-42d8-4c34-ae3c-11261c655e51\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0c023130-0969-486d-8552-c53748d45403" + "ac0fbd8d-1fb4-4ed6-bdbf-68e92d39424c" ], "x-ms-correlation-request-id": [ - "a81ec07b-8e3f-4d31-81fe-2888ff726953" + "0efeb645-c285-47f1-a48e-7dc4cb9a5324" + ], + "x-ms-arm-service-request-id": [ + "786ecec6-bf02-40eb-954d-aee26f4be567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053732Z:a81ec07b-8e3f-4d31-81fe-2888ff726953" + "WESTUS:20200207T024528Z:0efeb645-c285-47f1-a48e-7dc4cb9a5324" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:32 GMT" - ], "Content-Length": [ - "1066" + "1069" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,25 +327,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"apimvnet452\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452\",\r\n \"etag\": \"W/\\\"330f4854-5201-464c-a19d-25a72b6771c4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af10d335-425a-47fd-a3d6-0649c21b86f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apimsubnet7750\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"etag\": \"W/\\\"330f4854-5201-464c-a19d-25a72b6771c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"apimvnet9686\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686\",\r\n \"etag\": \"W/\\\"283ed671-42d8-4c34-ae3c-11261c655e51\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32819039-56c5-4ed6-9afa-eefa86b4954f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apimsubnet2496\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"etag\": \"W/\\\"283ed671-42d8-4c34-ae3c-11261c655e51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDQ1Mi9zdWJuZXRzL2FwaW1zdWJuZXQ3NzUwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDk2ODYvc3VibmV0cy9hcGltc3VibmV0MjQ5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e26dbfb0-076e-4861-8fd2-4c951bda6f28" + "1ac2bbdb-f961-4ebb-bfdb-af6f54788f9e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0.0" ] }, @@ -344,39 +353,42 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"330f4854-5201-464c-a19d-25a72b6771c4\"" + "W/\"283ed671-42d8-4c34-ae3c-11261c655e51\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2a5faaf0-1a98-475a-a979-61c7458f9135" + "046325e4-239b-4654-8886-7a48df938b52" ], "x-ms-correlation-request-id": [ - "ed3db653-92ad-42d3-af10-97029adb084c" + "48d819f3-ccb1-4452-950a-9bb1def3f200" + ], + "x-ms-arm-service-request-id": [ + "d9e5fa80-93b1-4238-a7e2-27ed0ef76a16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053732Z:ed3db653-92ad-42d3-af10-97029adb084c" + "WESTUS:20200207T024529Z:48d819f3-ccb1-4452-950a-9bb1def3f200" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:32 GMT" - ], "Content-Length": [ - "417" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,77 +397,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"apimsubnet7750\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"etag\": \"W/\\\"330f4854-5201-464c-a19d-25a72b6771c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"apimsubnet2496\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"etag\": \"W/\\\"283ed671-42d8-4c34-ae3c-11261c655e51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c46b23f0-5fd6-4be9-bdcb-0cf6bb1bf2a0" + "e1e2e81d-a457-4787-9498-2e4b78279254" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "564" + "565" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:32 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzQYo=\"" + "\"AAAAAAABqHE=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4912757-2273-411b-aabd-a129ec9db7f7", - "101199f4-a0f9-4e5d-a363-9807630c4d04" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ab146b8d-7eef-4213-90a4-84d37e7aaecd", + "17780b0f-1ba6-42ed-a77c-2a93891d4492" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "e033881a-f100-4dc7-ad37-139e27e48d75" + "d90fc84a-5ac8-4521-a8fb-ca93fcf0afe7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053734Z:e033881a-f100-4dc7-ad37-139e27e48d75" + "WESTUS:20200207T024533Z:d90fc84a-5ac8-4521-a8fb-ca93fcf0afe7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:34 GMT" - ], "Content-Length": [ - "1380" + "1407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -464,77 +476,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzQYo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257\",\r\n \"name\": \"sdktestapim2257\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqHE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-07T02:45:30.9165032Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c504cb89-f490-4965-bbe7-1587c4b271d6" + "84085755-bf97-4039-96a3-bb720b2415a5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "564" + "565" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:31:51 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzQxQ=\"" + "\"AAAAAAABqK4=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31bbbdd5-bd6c-4132-9344-1498d82fe896", - "566d8cb4-7cd9-4692-98ed-7c9f2c17173a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bc8e2a7e-2d4e-47b2-8f40-76d382606c69", + "f8f1b145-b6c1-445f-80ee-a7693b099496" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "a002a0e0-75d4-4f8b-8dd1-4b38abfb45f7" + "656f9886-7f93-411b-91c9-47f3ceae9814" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061452Z:a002a0e0-75d4-4f8b-8dd1-4b38abfb45f7" + "WESTUS:20200207T033152Z:656f9886-7f93-411b-91c9-47f3ceae9814" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:14:52 GMT" - ], "Content-Length": [ - "2302" + "2376" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,2284 +555,2881 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzQxQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.187.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257\",\r\n \"name\": \"sdktestapim2257\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqK4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2020-02-07T02:45:30.9165032Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2257.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2257-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2257.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2257.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2257.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2257.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2257.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.108.156\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:46:32 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ba8e1a0-4854-4f7c-ba14-21e8c95c748d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "22da450a-cdd7-44da-a595-3149f92f9003" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "a9c9eb48-e1f4-4271-8b3d-a9b37e8a92a9" + "a0724884-b1c7-4264-8fa1-193e3db6b97b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053835Z:a9c9eb48-e1f4-4271-8b3d-a9b37e8a92a9" + "WESTUS:20200207T024633Z:a0724884-b1c7-4264-8fa1-193e3db6b97b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:38:34 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:47:33 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e158145-ede7-4e9b-afde-8fbb363e11d4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "58f12dbd-1d95-4e1f-8591-76a5c5043d39" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "9560e970-2240-4462-ad52-a3acf846fa36" + "c7ead244-9d71-4855-83bc-9be51a4ba06d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053935Z:9560e970-2240-4462-ad52-a3acf846fa36" + "WESTUS:20200207T024734Z:c7ead244-9d71-4855-83bc-9be51a4ba06d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:39:35 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:48:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c6fcc0d8-d94b-4487-a4ab-375b4e93d255" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "46597dab-4ac4-4dd0-aa65-198dedf65a00" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "ab296590-71b2-4ecc-b226-d99ca0bc187f" + "3acd1019-f6c4-4c8e-b65a-58b4f10912b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054036Z:ab296590-71b2-4ecc-b226-d99ca0bc187f" + "WESTUS:20200207T024834Z:3acd1019-f6c4-4c8e-b65a-58b4f10912b8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:40:35 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:49:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41cccf3d-fde1-4583-9c77-d51f2fc9c4c6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b129ef86-ae8c-47a9-a002-a5f63b31f320" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "e9a296dd-f752-4df1-b99f-a1b2039b9520" + "45c6e2d0-621a-4060-9e9c-c24c06b788e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054136Z:e9a296dd-f752-4df1-b99f-a1b2039b9520" + "WESTUS:20200207T024934Z:45c6e2d0-621a-4060-9e9c-c24c06b788e8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:41:35 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:50:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "442d38f6-4051-4eeb-8de2-e09aa1e20733" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c3689af0-b09a-4613-9c32-c3e58323b3e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "74b56921-8055-4e2e-af9d-17cad332f7a9" + "06c01947-39a0-45e8-89af-d689ba571e08" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054236Z:74b56921-8055-4e2e-af9d-17cad332f7a9" + "WESTUS:20200207T025035Z:06c01947-39a0-45e8-89af-d689ba571e08" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:42:36 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:51:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8faebcb8-9fba-4df1-88de-399cc1f33320" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4b80bd88-b754-4f0c-bf4e-3b59f0215705" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "08152d78-47ba-4497-8889-8b3bd6e0297a" + "7f88892d-fedb-4122-8f15-64f0ff52fb6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054337Z:08152d78-47ba-4497-8889-8b3bd6e0297a" + "WESTUS:20200207T025135Z:7f88892d-fedb-4122-8f15-64f0ff52fb6b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:43:36 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:52:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f66120e-a981-44cd-9690-ef43c8817f53" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0515b002-912a-40fb-94ac-d982dd3a20b6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "e5cb162f-d27e-4d9b-8aa8-63147d018fb9" + "2f226db9-882b-4a19-a994-497a69a5f02c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054437Z:e5cb162f-d27e-4d9b-8aa8-63147d018fb9" + "WESTUS:20200207T025235Z:2f226db9-882b-4a19-a994-497a69a5f02c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:44:36 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:53:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37fce203-2a6d-43dd-b15e-1bf72f4e5912" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5b108d70-e9fd-4154-9dd8-4c8be3b8d8f3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "6fbf7a6b-57de-466c-b4f1-c41ef35b3035" + "d3638eb0-9e41-445d-86e3-f1301709a05b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054537Z:6fbf7a6b-57de-466c-b4f1-c41ef35b3035" + "WESTUS:20200207T025335Z:d3638eb0-9e41-445d-86e3-f1301709a05b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:45:36 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:54:36 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68ce9a8e-03c8-45c3-8577-b63875614764" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cd0afa1f-0939-4157-a9ee-091e6565bfc8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "605d1da5-29aa-4def-b106-36af1f684540" + "f2843bc7-ff51-4114-86b5-f3c13adb96e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054638Z:605d1da5-29aa-4def-b106-36af1f684540" + "WESTUS:20200207T025436Z:f2843bc7-ff51-4114-86b5-f3c13adb96e6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:46:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:55:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd7ff76c-ca4b-4976-b591-fbf946076e44" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "edf7593b-0eaf-43a1-a5c7-f35b4a93b596" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-correlation-request-id": [ - "7ccb0803-4f67-4abd-8633-e68dd958dc62" + "a67be855-2514-4223-b98b-7bbe7796fb9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054738Z:7ccb0803-4f67-4abd-8633-e68dd958dc62" + "WESTUS:20200207T025536Z:a67be855-2514-4223-b98b-7bbe7796fb9e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:47:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:56:36 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a42e316-b6a8-4f34-a58f-a98a4bc032e9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ba977f8a-9ad7-4566-a668-5e11fb10f9a5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "9da2a785-3a2d-4df6-84c9-478f0a7d1d90" + "4324be56-d8c5-4a0c-8ea1-52f569fb2b6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054839Z:9da2a785-3a2d-4df6-84c9-478f0a7d1d90" + "WESTUS:20200207T025637Z:4324be56-d8c5-4a0c-8ea1-52f569fb2b6b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:48:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:57:36 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Strict-Transport-Security": [ + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5e05b67-d670-48f8-8796-f3e091130428" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2ea2fd7f-7e38-44a0-929b-ab408fecd367" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-correlation-request-id": [ - "49525fe0-1272-488e-bfed-827556613eae" + "bb5db953-7b21-41b8-92ba-f8390b781af1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T054939Z:49525fe0-1272-488e-bfed-827556613eae" + "WESTUS:20200207T025737Z:bb5db953-7b21-41b8-92ba-f8390b781af1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:49:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:58:37 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "810b22a3-ff38-4a2b-ad30-80fde00e3b04" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b5b509ea-3946-4e2d-8d82-0cdf255c7369" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "7ffde6d5-1af6-4120-86b6-0ff53ebea696" + "941cc870-68ad-4c0e-ae76-aadad0a07de5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055039Z:7ffde6d5-1af6-4120-86b6-0ff53ebea696" + "WESTUS:20200207T025837Z:941cc870-68ad-4c0e-ae76-aadad0a07de5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:50:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:59:38 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8b2e506-d3be-4366-bc9e-a9ddf3c2cb05" + "169fdc84-4bd4-46b8-ae86-99afef6d4312" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "68270178-2457-4774-87b1-e652ef44ace3" + "c100fcff-fa61-4955-a379-eba639962789" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055140Z:68270178-2457-4774-87b1-e652ef44ace3" + "WESTUS:20200207T025938Z:c100fcff-fa61-4955-a379-eba639962789" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:51:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:00:38 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b7ffc7a-64b5-40cf-930f-e894a0ec4510" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4574dd90-853c-4326-9d11-3e294b6d1a73" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11998" ], "x-ms-correlation-request-id": [ - "d1e49259-2113-47fe-8e41-a1348596b937" + "aca2be98-da44-4a11-9622-12298f8fc3f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055240Z:d1e49259-2113-47fe-8e41-a1348596b937" + "WESTUS:20200207T030039Z:aca2be98-da44-4a11-9622-12298f8fc3f0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:52:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:01:38 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e3248ae-02aa-4407-b048-1c204dda0b90" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1a441689-59d1-4eb7-b8a8-d5c17a3f9c68" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-correlation-request-id": [ - "fd850eb8-4161-4b46-a656-ef44159e07f8" + "9964a23d-f740-45c2-95ac-d3fad9aa1375" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055341Z:fd850eb8-4161-4b46-a656-ef44159e07f8" + "WESTUS:20200207T030139Z:9964a23d-f740-45c2-95ac-d3fad9aa1375" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:53:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:02:39 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6a5f9b5-ca9b-4ccb-b465-08aef9e00142" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e789fa86-75d7-42a1-842a-c315b9418337" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-correlation-request-id": [ - "299b3f27-b59b-4aae-a028-388ad446ca19" + "a7e1c6e2-b771-4dc2-a18e-de27029d7f58" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055441Z:299b3f27-b59b-4aae-a028-388ad446ca19" + "WESTUS:20200207T030240Z:a7e1c6e2-b771-4dc2-a18e-de27029d7f58" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:54:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:03:39 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "987df315-ca19-492f-96bc-f7ca26afb499" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5a84c11b-98c0-4ad4-9bda-da783d1aca22" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-correlation-request-id": [ - "f72e6723-d006-48f5-bd7e-8d8ba20087fd" + "72ebfb5b-0a0a-4a8c-a0dd-e1fcdc470476" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055541Z:f72e6723-d006-48f5-bd7e-8d8ba20087fd" + "WESTUS:20200207T030340Z:72ebfb5b-0a0a-4a8c-a0dd-e1fcdc470476" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:55:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:04:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab051216-de8d-481d-8fec-978303c4a4ee" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5f002202-a1e8-4624-9b4f-386c040a587b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-correlation-request-id": [ - "afb57d2c-1044-48b5-8e16-93c75fb882f4" + "43c115d2-9a23-4179-a5bd-582aad4c7983" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055641Z:afb57d2c-1044-48b5-8e16-93c75fb882f4" + "WESTUS:20200207T030440Z:43c115d2-9a23-4179-a5bd-582aad4c7983" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:56:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:05:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4196e9f-c2fd-4e74-89ad-b3f39caacc8a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "dd4e6997-dcc1-488e-a42b-1b4e0d72f063" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11999" ], "x-ms-correlation-request-id": [ - "bc142199-270a-4f6a-9689-cfb990d8a113" + "1a60d8e7-500b-49af-8dc6-56c20d7b8a6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055742Z:bc142199-270a-4f6a-9689-cfb990d8a113" + "WESTUS:20200207T030541Z:1a60d8e7-500b-49af-8dc6-56c20d7b8a6a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:57:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:06:41 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79ad1d91-dc32-4a09-a5aa-7ebb2be660d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e972818d-4b34-4709-9f9c-458632079b0d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-correlation-request-id": [ - "c0bc9a8a-cc9d-4f74-8127-e17a30fa491f" + "528ad5aa-2c54-481b-958c-2dd149550f2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055842Z:c0bc9a8a-cc9d-4f74-8127-e17a30fa491f" + "WESTUS:20200207T030641Z:528ad5aa-2c54-481b-958c-2dd149550f2e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:58:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:07:41 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b098ab26-1ab3-46c3-bca2-f8bba58cc090" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "66128c48-6ac0-4933-af3c-bd9f14b5f74d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-correlation-request-id": [ - "9bb23c43-b53c-4f9a-8272-28d0efda2904" + "fec46553-c85a-48cb-8284-a8b895334af0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T055943Z:9bb23c43-b53c-4f9a-8272-28d0efda2904" + "WESTUS:20200207T030742Z:fec46553-c85a-48cb-8284-a8b895334af0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:59:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:08:42 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57dd3e98-a878-45f2-a800-be6ca7a44538" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "271fc6bf-398c-4fb6-89b4-6a30b19f81e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-correlation-request-id": [ - "bfb9ef9e-6b1a-4dca-bd14-343e7a43c95d" + "ed3fffec-a9bf-47a4-b30b-7726117878d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060043Z:bfb9ef9e-6b1a-4dca-bd14-343e7a43c95d" + "WESTUS:20200207T030842Z:ed3fffec-a9bf-47a4-b30b-7726117878d0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:00:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:09:41 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85a55c58-b0d4-4382-ba02-8d181d869363" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d24e450b-5313-4d1c-94f7-ecfaa10dce13" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11997" ], "x-ms-correlation-request-id": [ - "584eecae-4973-40a4-8a94-95ff372baf88" + "64c9eaf8-b87d-4cc3-8a5d-34476cae616f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060143Z:584eecae-4973-40a4-8a94-95ff372baf88" + "WESTUS:20200207T030942Z:64c9eaf8-b87d-4cc3-8a5d-34476cae616f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:01:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:10:42 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], - "x-ms-request-id": [ - "a21b0eb8-319e-48bf-bec7-94e54db710db" + "Retry-After": [ + "60" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "51f435b8-58e1-4c8c-99ed-9c44166cf22a" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11999" ], "x-ms-correlation-request-id": [ - "f792b8d2-d082-4458-ae4c-3776a1eba611" + "8cd0006c-96ef-48cb-a815-1ff3248afcd6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060243Z:f792b8d2-d082-4458-ae4c-3776a1eba611" + "WESTUS:20200207T031043Z:8cd0006c-96ef-48cb-a815-1ff3248afcd6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:02:43 GMT" - ], "Content-Length": [ - "2294" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzQp4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.187.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/applynetworkconfigurationupdates?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L2FwcGx5bmV0d29ya2NvbmZpZ3VyYXRpb251cGRhdGVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "382e503b-89b2-40a1-931c-b5b9aba2530e" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "32" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:11:43 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087//operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "793220a2-51d5-4009-bb74-d7555eeb9d1d" + "ca32a8ef-b0eb-44ae-8fd6-70a8a6a5bc9b" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "4392e35d-a6a9-4619-8194-c1f53f547882" + "5b0ecf9f-ad47-4f78-8773-979259f1046f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060244Z:4392e35d-a6a9-4619-8194-c1f53f547882" + "WESTUS:20200207T031143Z:5b0ecf9f-ad47-4f78-8773-979259f1046f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:02:43 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087//operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3Ly9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMHhNRGczWDAxaGJtRm5aVkp2YkdWZlpERXdNRFF4T0RVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:12:43 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "670f334a-4a24-4c6b-a95e-c9d98ba1e94e" + "95584da3-bd8c-47a5-bc5a-ba08f75461dc" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0b0f5953-be2d-4bb6-bc3d-bf4b3d1573f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T031243Z:0b0f5953-be2d-4bb6-bc3d-bf4b3d1573f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:13:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b462180-cb7f-403f-b201-4506df2614e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "3b9efbfd-1fa2-4b4d-bd50-5bdb4b95dc7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T031343Z:3b9efbfd-1fa2-4b4d-bd50-5bdb4b95dc7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:14:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "97e31bab-8e0f-4082-bbf0-e78b0950acd9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7eb0b48e-afc9-487c-aa4c-9a56c1f0bbe5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T031444Z:7eb0b48e-afc9-487c-aa4c-9a56c1f0bbe5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:15:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "706c3e54-d9fa-437a-a6b9-bfb8a55995d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4f1c504b-bbf3-46df-8e1e-65afdd22f9a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T031544Z:4f1c504b-bbf3-46df-8e1e-65afdd22f9a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:16:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "438bdc92-85a5-40c6-a455-784c11710be6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c3f17eb6-1f6c-4111-ad54-f5cedd2b3c7b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T031645Z:c3f17eb6-1f6c-4111-ad54-f5cedd2b3c7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:17:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8ff7e673-b2a8-4887-9e64-e45358af122b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ac2bacf0-f889-4bc8-8ba1-cba0e059f5f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T031745Z:ac2bacf0-f889-4bc8-8ba1-cba0e059f5f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19BY3RfNjQ5YTk2NDU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlCWTNSZk5qUTVZVGsyTkRVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:18:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1a10f702-8220-42d7-9f6b-7aa979784bda" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "2e827174-9558-42b0-a86f-cfe990d7f833" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T031845Z:2e827174-9558-42b0-a86f-cfe990d7f833" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2368" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257\",\r\n \"name\": \"sdktestapim2257\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqKE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T02:45:30.9165032Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2257.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2257-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2257.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2257.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2257.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2257.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2257.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.108.156\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/applynetworkconfigurationupdates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L2FwcGx5bmV0d29ya2NvbmZpZ3VyYXRpb251cGRhdGVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a270aaa-ec0a-4690-adb6-ff1ca8422c9e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:18:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257//operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "75e5dcfb-3e7f-4908-b31e-596556dd3bd5" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "bb60a40b-0463-4dca-af16-a79231b056b6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T031845Z:bb60a40b-0463-4dca-af16-a79231b056b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257//operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3Ly9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uTmthM1JsYzNSaGNHbHRNakkxTjE5TllXNWhaMlZTYjJ4bFh6UmlNbVJoWXpObT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:19:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dbf44209-99c4-47ce-907d-fd1708e2ed89" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-correlation-request-id": [ - "8784b92b-ed4b-4e76-ae24-44a631a651e4" + "a9533f26-5a31-45ad-b463-6ed8c44c4da2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060345Z:8784b92b-ed4b-4e76-ae24-44a631a651e4" + "WESTUS:20200207T031946Z:a9533f26-5a31-45ad-b463-6ed8c44c4da2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:03:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:20:46 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7587b4b0-7185-427c-a2bb-490c12bd13e7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a9f96bc4-349f-42ee-8e93-eebcdcf12a7a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-correlation-request-id": [ - "68100295-f2cd-4de3-811e-a7e4fcf5aabc" + "7c26f86b-7690-4334-ab2d-43a1f6daa197" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060445Z:68100295-f2cd-4de3-811e-a7e4fcf5aabc" + "WESTUS:20200207T032046Z:7c26f86b-7690-4334-ab2d-43a1f6daa197" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:04:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:21:46 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d9b0bd4-fa4b-452a-bfe9-f8f10ab576e8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2c439918-df11-4f4d-9dc5-50bc9650e8b2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11994" ], "x-ms-correlation-request-id": [ - "565ba234-0dcb-42ae-b7aa-d283d33e9ceb" + "0d12d591-b759-473a-ade7-ea74fa746839" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060545Z:565ba234-0dcb-42ae-b7aa-d283d33e9ceb" + "WESTUS:20200207T032147Z:0d12d591-b759-473a-ade7-ea74fa746839" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:05:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:22:47 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "503b6d58-f05c-47fc-bccd-36b33b590c6a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "64ae2d59-10b7-4edc-aa68-778883923ea4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11998" ], "x-ms-correlation-request-id": [ - "d175cd48-ad18-4ab1-9571-89154680cee1" + "de9f311f-71a1-4b36-b0cc-74003386633f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060646Z:d175cd48-ad18-4ab1-9571-89154680cee1" + "WESTUS:20200207T032247Z:de9f311f-71a1-4b36-b0cc-74003386633f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:06:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:23:47 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8106ac33-aa79-4a93-bc55-59995f41e617" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bbba6a48-5d65-4b65-b068-a8dbd331c986" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11997" ], "x-ms-correlation-request-id": [ - "b4618f96-80f1-477e-88f3-6ecb06e7b442" + "c709f070-8003-44d7-8e2c-49c7ae97396e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060746Z:b4618f96-80f1-477e-88f3-6ecb06e7b442" + "WESTUS:20200207T032347Z:c709f070-8003-44d7-8e2c-49c7ae97396e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:07:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:24:48 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c7bcdbd-ec8a-4086-a608-dfdecb6a70ea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a59c899e-57b6-4b46-9f84-d9e027cdee57" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11999" ], "x-ms-correlation-request-id": [ - "1af9c5d7-8311-400a-a387-9e5d36d6bb42" + "f8fc43a5-df6d-4e31-a9a3-2567160a1a5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060846Z:1af9c5d7-8311-400a-a387-9e5d36d6bb42" + "WESTUS:20200207T032448Z:f8fc43a5-df6d-4e31-a9a3-2567160a1a5d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:08:46 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:25:48 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c6993f02-eac4-4673-91f8-34afb1da9ae1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fd01d105-926b-4127-966d-501e91f5896e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11998" ], "x-ms-correlation-request-id": [ - "78814d4c-178b-4b74-aa93-af113f51ae5d" + "7841021a-0271-4e0a-89d9-33365b5bd766" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T060946Z:78814d4c-178b-4b74-aa93-af113f51ae5d" + "WESTUS:20200207T032548Z:7841021a-0271-4e0a-89d9-33365b5bd766" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:09:46 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:26:48 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc86c7be-9747-45fa-9db6-008a34cb141e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c7f2b97f-8cae-4e45-9f3b-cec8111a1696" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11997" ], "x-ms-correlation-request-id": [ - "eeb83214-2bba-43d3-9567-e703fbd68012" + "1c901641-29e0-4cf0-b0a3-799300265778" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061047Z:eeb83214-2bba-43d3-9567-e703fbd68012" + "WESTUS:20200207T032648Z:1c901641-29e0-4cf0-b0a3-799300265778" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:10:46 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:27:48 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c56b5d71-ba5b-4530-9312-7ccea76485ff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "746dd9f0-8fcb-4c00-8927-578ba4f5b714" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11996" ], "x-ms-correlation-request-id": [ - "c88d40b9-0127-414d-9c4f-49fa2c130771" + "d76f54d5-4745-41f4-8513-964c12b00351" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061147Z:c88d40b9-0127-414d-9c4f-49fa2c130771" + "WESTUS:20200207T032749Z:d76f54d5-4745-41f4-8513-964c12b00351" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:11:47 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:28:49 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9725db35-37da-47b9-b916-e9f013d41e6a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8594783a-21d4-48eb-95c2-a7f4597e0471" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11997" ], "x-ms-correlation-request-id": [ - "7ac74817-5242-4274-af9b-615ca8f37117" + "62d31f0a-5654-417c-8cba-ed37d08dbf98" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061247Z:7ac74817-5242-4274-af9b-615ca8f37117" + "WESTUS:20200207T032849Z:62d31f0a-5654-417c-8cba-ed37d08dbf98" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:12:47 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:29:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "947d3551-53fd-456a-b7cf-cf54d3e35748" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b13ce28d-4a8b-4917-bc44-0716428d86b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T032950Z:b13ce28d-4a8b-4917-bc44-0716428d86b4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Length": [ "0" + ], + "Expires": [ + "-1" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:30:49 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80092f6a-43f1-46d7-aeba-9574f79a08bd" + "470f098b-ecba-4388-a299-e329008177b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "528227e3-1cfe-4e0e-99e6-9f2fae3b8015" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T033050Z:528227e3-1cfe-4e0e-99e6-9f2fae3b8015" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 03:31:49 GMT" + ], + "Pragma": [ + "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15ac2fef-9fed-4bee-8887-da850ceb49a8" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11999" ], "x-ms-correlation-request-id": [ - "2498be47-9001-4291-96aa-dfeeb34de431" + "409fe74b-6fad-4d1e-9dc1-b3b0d5cc48ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061347Z:2498be47-9001-4291-96aa-dfeeb34de431" + "WESTUS:20200207T033150Z:409fe74b-6fad-4d1e-9dc1-b3b0d5cc48ca" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:13:46 GMT" + "Content-Length": [ + "2368" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257\",\r\n \"name\": \"sdktestapim2257\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqK0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T02:45:30.9165032Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2257.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2257-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2257.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2257.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2257.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2257.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2257.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.108.156\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19NYW5hZ2VSb2xlXzRiMmRhYzNm?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlOWVc1aFoyVlNiMnhsWHpSaU1tUmhZek5tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:31:49 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13ab99dd-7967-47d3-8c03-171f663e8430" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "73fb71cf-0c9f-4dc0-a125-92844d71b877" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11998" ], "x-ms-correlation-request-id": [ - "1ba1b62a-ed74-44c8-8dee-bb2cc77b1274" + "f44363f9-f8cb-45ca-b0f0-98fe2c432e55" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061448Z:1ba1b62a-ed74-44c8-8dee-bb2cc77b1274" + "WESTUS:20200207T033150Z:f44363f9-f8cb-45ca-b0f0-98fe2c432e55" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:14:47 GMT" - ], "Content-Length": [ - "2294" + "2368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2829,55 +3438,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzQxA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.187.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257\",\r\n \"name\": \"sdktestapim2257\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqK0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T02:45:30.9165032Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2257.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2257-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2257.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2257.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2257.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2257.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2257.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.108.156\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/networkstatus?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L25ldHdvcmtzdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7c6239a6-28cc-4f4b-aedc-0bee790b1def" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:31:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7dbd2f8-e2a8-4a43-927f-180a252e51e6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4838d7d3-f53d-4276-a278-777b5609fb83" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11997" ], "x-ms-correlation-request-id": [ - "51f58302-6eef-4e29-936c-563441b695ef" + "a13b0bf4-bc7a-4646-98e8-eda1731f9c9c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061448Z:51f58302-6eef-4e29-936c-563441b695ef" + "WESTUS:20200207T033151Z:a13b0bf4-bc7a-4646-98e8-eda1731f9c9c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:14:47 GMT" - ], "Content-Length": [ - "2294" + "1902" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2886,61 +3501,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzQxA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.187.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimstgpluqqdysoo22pnlhy.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.5835631Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.5835631Z\"\r\n },\r\n {\r\n \"name\": \"apimstgpluqqdysoo22pnlhy.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.2867039Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.2867039Z\"\r\n },\r\n {\r\n \"name\": \"apimstgpluqqdysoo22pnlhy.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:08.4743089Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:08.4743089Z\"\r\n },\r\n {\r\n \"name\": \"apimstgpluqqdysoo22pnlhy.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.5210637Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.5210637Z\"\r\n },\r\n {\r\n \"name\": \"apirpsqlxixmxvr7s1z738na.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.073446Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.073446Z\"\r\n },\r\n {\r\n \"name\": \"https://centralus.prod.warm.ingestion.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.3179519Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.3179519Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.5054421Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.5054421Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.3179519Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.3179519Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2020-02-07T03:22:08.9430347Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:08.9430347Z\"\r\n },\r\n {\r\n \"name\": \"smtpi-ch1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:05.3963851Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:05.3963851Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/networkstatus?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L25ldHdvcmtzdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/locations/Central%20US/networkstatus?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L2xvY2F0aW9ucy9DZW50cmFsJTIwVVMvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d71aed0-900b-45d7-b43f-f5ac04f2a821" + "94a2bcf6-54a1-498f-9340-74eaef86df11" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:31:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e21f13c-ab20-44f8-80b2-7a6b7095e66f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "588f2876-b992-4799-a729-392945e7067d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11996" ], "x-ms-correlation-request-id": [ - "332ef502-aec2-4317-8e9d-d1e7e2f79aa3" + "a7b5adc2-5db2-4001-8986-5760f7381685" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061449Z:332ef502-aec2-4317-8e9d-d1e7e2f79aa3" + "WESTUS:20200207T033151Z:a7b5adc2-5db2-4001-8986-5760f7381685" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:14:49 GMT" - ], "Content-Length": [ - "1539" + "1858" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2949,1558 +3564,1555 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.9394226Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:26.1794691Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.4058646Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.0535388Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.6094907Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.2137387Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.9524458Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.3815689Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.0770101Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.8346941Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.0303939Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.7911376Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.9832887Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:28.8702543Z\"\r\n },\r\n {\r\n \"name\": \"uun8gpuqro.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:25.655056Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.2575467Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]", + "ResponseBody": "{\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimstgpluqqdysoo22pnlhy.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.5835631Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.5835631Z\"\r\n },\r\n {\r\n \"name\": \"apimstgpluqqdysoo22pnlhy.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.2867039Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.2867039Z\"\r\n },\r\n {\r\n \"name\": \"apimstgpluqqdysoo22pnlhy.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:08.4743089Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:08.4743089Z\"\r\n },\r\n {\r\n \"name\": \"apimstgpluqqdysoo22pnlhy.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.5210637Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.5210637Z\"\r\n },\r\n {\r\n \"name\": \"apirpsqlxixmxvr7s1z738na.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.073446Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.073446Z\"\r\n },\r\n {\r\n \"name\": \"https://centralus.prod.warm.ingestion.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.3179519Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.3179519Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.5054421Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.5054421Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:10.3179519Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:10.3179519Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2020-02-07T03:22:08.9430347Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:08.9430347Z\"\r\n },\r\n {\r\n \"name\": \"smtpi-ch1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-07T03:22:05.3963851Z\",\r\n \"lastStatusChange\": \"2020-02-07T03:22:05.3963851Z\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/locations/Central%20US/networkstatus?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L2xvY2F0aW9ucy9DZW50cmFsJTIwVVMvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a4e766d7-0425-4319-b2bb-455ad6be69b3" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:32:52 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], - "x-ms-request-id": [ - "21b3484a-309b-4f56-b65f-7d29a5c35a72" + "Retry-After": [ + "60" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4dd3fa88-de35-41d8-bc56-7c2fb94f98de" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11999" ], "x-ms-correlation-request-id": [ - "ad60379f-1f87-4850-8d30-926c8ecc3a8c" + "69ca9d20-0f09-4d02-907a-9b8d7fb80fba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061450Z:ad60379f-1f87-4850-8d30-926c8ecc3a8c" + "WESTUS:20200207T033252Z:69ca9d20-0f09-4d02-907a-9b8d7fb80fba" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:14:49 GMT" - ], "Content-Length": [ - "1495" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.9394226Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:26.1794691Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.4058646Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.0535388Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.6094907Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.2137387Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.9524458Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.3815689Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.0770101Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.8346941Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.0303939Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.7911376Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.9832887Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:28.8702543Z\"\r\n },\r\n {\r\n \"name\": \"uun8gpuqro.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:25.655056Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.2575467Z\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:33:52 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a921ebb-1f27-4f6c-a479-92935f9f525f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "05de7206-d537-45c5-aa06-8a35707a0118" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11999" ], "x-ms-correlation-request-id": [ - "ff82c185-8560-45f8-a2c2-e3ea97478483" + "825fea5b-1725-4792-8df6-193035d0ec12" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061553Z:ff82c185-8560-45f8-a2c2-e3ea97478483" + "WESTUS:20200207T033353Z:825fea5b-1725-4792-8df6-193035d0ec12" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:15:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:34:52 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1410bd19-7b4f-467d-8177-5139c879d99d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f56cea8d-d1c5-4c7e-aecb-38d68f9033f7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11999" ], "x-ms-correlation-request-id": [ - "14a93ad2-29b6-4b8f-92f1-af0e95c4962d" + "95cf9cc6-d10b-4c67-b1b8-df53e221db21" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061653Z:14a93ad2-29b6-4b8f-92f1-af0e95c4962d" + "WESTUS:20200207T033453Z:95cf9cc6-d10b-4c67-b1b8-df53e221db21" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:16:52 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:35:53 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f7eadc2-94a0-4b69-964f-3e095f49bd43" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "eed76328-8c9d-49c2-9c42-202e5c62f12c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11998" ], "x-ms-correlation-request-id": [ - "8832deb8-1203-4317-a733-715c00c2f038" + "d6d70b2b-9814-4814-9aef-9051b6323e7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061753Z:8832deb8-1203-4317-a733-715c00c2f038" + "WESTUS:20200207T033553Z:d6d70b2b-9814-4814-9aef-9051b6323e7c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:17:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:36:53 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9de1f28a-f013-4292-8192-88ac6fbb6ba9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1a440f71-dde9-4282-80f7-c924949fa273" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11999" ], "x-ms-correlation-request-id": [ - "c2c0dba0-c03f-45c6-829b-fed0ee9c877c" + "8ad2a811-5ee8-4182-9863-935183227fb6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061853Z:c2c0dba0-c03f-45c6-829b-fed0ee9c877c" + "WESTUS:20200207T033654Z:8ad2a811-5ee8-4182-9863-935183227fb6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:18:52 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:37:54 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68d8911b-57e6-419d-a2c6-196e2351a5f1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9388aa36-e917-46fb-85e3-6a34881a3e53" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11999" ], "x-ms-correlation-request-id": [ - "daeb356c-c306-4e91-8b2f-687154a0bd7e" + "b5609706-852c-428d-95fb-76c5a9d11767" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T061954Z:daeb356c-c306-4e91-8b2f-687154a0bd7e" + "WESTUS:20200207T033754Z:b5609706-852c-428d-95fb-76c5a9d11767" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:19:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:38:54 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8dda03ee-30de-43a9-96bc-ad5e261f9048" + "c8e0dc62-8296-48c0-8778-f0f7f6ab5c36" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "912561d0-482d-4232-aa06-93f4621eb132" + "66326975-457a-4584-8c43-cbb15be40567" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062054Z:912561d0-482d-4232-aa06-93f4621eb132" + "WESTUS:20200207T033855Z:66326975-457a-4584-8c43-cbb15be40567" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:20:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:39:54 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc9e739f-a29f-4c88-97ee-64195afdc397" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "21a1b002-6888-478e-a62a-de50ebe913bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11999" ], "x-ms-correlation-request-id": [ - "4676eed6-1607-4a55-863e-f9a73652b238" + "a78c7237-9cfb-41e5-b38a-18dce039106b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062154Z:4676eed6-1607-4a55-863e-f9a73652b238" + "WESTUS:20200207T033955Z:a78c7237-9cfb-41e5-b38a-18dce039106b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:21:54 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:40:55 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31c07fac-7876-44ad-96eb-6d667ca33d6d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f83961ba-cfec-4733-b6d1-6c38a53a5c6d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11999" ], "x-ms-correlation-request-id": [ - "b4f0d4ae-103f-46f3-bc1d-38762d272e5b" + "0360e9d5-7c6f-49f3-8202-1e93d7d603c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062254Z:b4f0d4ae-103f-46f3-bc1d-38762d272e5b" + "WESTUS:20200207T034055Z:0360e9d5-7c6f-49f3-8202-1e93d7d603c7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:22:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:41:55 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bae7992-0342-4910-b250-0a9bfd859ec8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d36290bd-633a-40ac-94ca-19372b90832d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11998" ], "x-ms-correlation-request-id": [ - "3e146b9c-b564-4b37-81fc-e1b69ee99712" + "2b1bf0c9-0354-4588-a83d-6594dfc0e0a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062355Z:3e146b9c-b564-4b37-81fc-e1b69ee99712" + "WESTUS:20200207T034155Z:2b1bf0c9-0354-4588-a83d-6594dfc0e0a5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:23:54 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:42:55 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fccfb4d-8df0-44a1-9dfd-ad8fe10f1e07" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "37f9c3d8-e5c1-49a1-a0b6-778c03258531" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11997" ], "x-ms-correlation-request-id": [ - "fbfac0c5-5ad9-45e0-a0c3-a0e2142fe7bc" + "f0610a4e-ef35-4cd6-8cbc-b28cfc6cf594" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062455Z:fbfac0c5-5ad9-45e0-a0c3-a0e2142fe7bc" + "WESTUS:20200207T034256Z:f0610a4e-ef35-4cd6-8cbc-b28cfc6cf594" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:24:54 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:43:55 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "036deb11-b26b-437f-9ff5-f8db16762351" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c604d5ca-c8be-4bb2-9654-3c8470436546" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11999" ], "x-ms-correlation-request-id": [ - "581861b7-d5e9-4c53-a342-aefefac8d330" + "b4b9d3a6-8497-48ee-9a9f-988fbdc8d484" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062555Z:581861b7-d5e9-4c53-a342-aefefac8d330" + "WESTUS:20200207T034356Z:b4b9d3a6-8497-48ee-9a9f-988fbdc8d484" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:25:55 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:44:56 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "652a869f-cb0f-4654-9b8f-84321f49d296" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "abb69174-510c-41ad-8284-ee11beab6026" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11998" ], "x-ms-correlation-request-id": [ - "81e7b3f7-6c24-4ff4-baa5-64d23c75af42" + "335b499c-6518-4a55-b872-5b1f7ceacaa0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062656Z:81e7b3f7-6c24-4ff4-baa5-64d23c75af42" + "WESTUS:20200207T034456Z:335b499c-6518-4a55-b872-5b1f7ceacaa0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:26:55 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:45:56 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "860d68d2-1e36-4ebd-a805-701190758ac5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5374f656-c4c7-4dce-b963-44b7240d8ca6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11999" ], "x-ms-correlation-request-id": [ - "68e17ce9-8b64-4894-8713-bbb57fab516f" + "5016a3a1-656e-49c0-9279-8dabd35d64b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062756Z:68e17ce9-8b64-4894-8713-bbb57fab516f" + "WESTUS:20200207T034557Z:5016a3a1-656e-49c0-9279-8dabd35d64b9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:27:56 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:46:57 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f3ac002-e607-40e4-9f58-5bd1da06acf5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8af6a4a2-6e6a-4352-96e9-47c2b733ffa7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11997" ], "x-ms-correlation-request-id": [ - "fb3ae465-d17f-4d74-88ae-594d15b3b1b2" + "80787b94-8215-43d6-87a7-f32a80f50ca0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062856Z:fb3ae465-d17f-4d74-88ae-594d15b3b1b2" + "WESTUS:20200207T034657Z:80787b94-8215-43d6-87a7-f32a80f50ca0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:28:56 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:47:57 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6b39f09-e500-476f-83e5-0eea1b2c5920" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "27d493c6-c1c2-469a-8584-446cdb3d05fe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11999" ], "x-ms-correlation-request-id": [ - "1563c69c-bb12-4fd1-8cfe-fa780539858b" + "f5fc8be8-e9fe-46ea-8d94-0917a48d4119" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T062957Z:1563c69c-bb12-4fd1-8cfe-fa780539858b" + "WESTUS:20200207T034758Z:f5fc8be8-e9fe-46ea-8d94-0917a48d4119" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:29:56 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:48:57 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17c55602-9cd4-4db4-9a0d-d2c723a0767f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d71053f3-da47-40a2-aa77-e898c7a42323" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11998" ], "x-ms-correlation-request-id": [ - "1444767d-e24d-40a5-b9e1-57fdfacb4b38" + "df04e25a-0060-46ed-afdf-f38f5a549856" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063057Z:1444767d-e24d-40a5-b9e1-57fdfacb4b38" + "WESTUS:20200207T034858Z:df04e25a-0060-46ed-afdf-f38f5a549856" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:30:56 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:49:58 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9902594b-5674-4eb0-ab15-b987b5a14840" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8831e222-882d-4dd9-b02f-e664966cca18" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11998" ], "x-ms-correlation-request-id": [ - "0b1da6d3-1a87-41c6-b6ec-050602d6b957" + "1c02c36f-458f-4fad-a327-1f693bdd2d96" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063157Z:0b1da6d3-1a87-41c6-b6ec-050602d6b957" + "WESTUS:20200207T034958Z:1c02c36f-458f-4fad-a327-1f693bdd2d96" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:31:57 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:50:58 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0241dfcf-c61c-411b-a478-43f1733def62" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "67eeda18-1233-4973-90dd-9329ae18e5f7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11997" ], "x-ms-correlation-request-id": [ - "1bfadc30-1934-4ef7-a597-2712a7b55ed9" + "f0915bb0-09bc-4b1a-8db0-2a015419a01c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063258Z:1bfadc30-1934-4ef7-a597-2712a7b55ed9" + "WESTUS:20200207T035058Z:f0915bb0-09bc-4b1a-8db0-2a015419a01c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:32:57 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:51:58 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4cd3c948-db2c-4395-bade-79c020a15015" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "124c03b3-8fb1-4b41-a02e-c624a1248da7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11999" ], "x-ms-correlation-request-id": [ - "a4fe5fb1-bac6-40a0-a3e9-4b4772e34a17" + "8febbe91-874e-4580-9f95-f9754072fc2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063358Z:a4fe5fb1-bac6-40a0-a3e9-4b4772e34a17" + "WESTUS:20200207T035159Z:8febbe91-874e-4580-9f95-f9754072fc2d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:33:57 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:52:59 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83ba4d61-fbcf-404b-9a94-134f257d5561" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b6d1d02a-6cb0-4410-babb-8b12f4820ff0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11997" ], "x-ms-correlation-request-id": [ - "bcc4635f-8ec6-437c-8d98-15ccf9bf4c54" + "be9f6efe-c8c4-4815-b028-6ce4962c127c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063458Z:bcc4635f-8ec6-437c-8d98-15ccf9bf4c54" + "WESTUS:20200207T035259Z:be9f6efe-c8c4-4815-b028-6ce4962c127c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:34:58 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:53:59 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "168fa752-44cb-4199-8ca0-d81e1c73ef30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "71002117-7ce3-4fea-a54d-7fef284ffdc0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11999" ], "x-ms-correlation-request-id": [ - "3d8c26dd-cd20-424b-928f-7248dd64b433" + "59bc6266-327a-49b5-99e5-98d091f166e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063559Z:3d8c26dd-cd20-424b-928f-7248dd64b433" + "WESTUS:20200207T035359Z:59bc6266-327a-49b5-99e5-98d091f166e0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:35:58 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:54:59 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ff8c78d-c593-4ded-be7a-e794ff8c63ad" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "614b7ba9-14f0-4d76-8a74-3e00cfbb7171" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11999" ], "x-ms-correlation-request-id": [ - "a519a56e-ff72-4ece-af12-66f177f3652d" + "f8015f82-9e62-475f-93de-9a2df3c3538b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063659Z:a519a56e-ff72-4ece-af12-66f177f3652d" + "WESTUS:20200207T035500Z:f8015f82-9e62-475f-93de-9a2df3c3538b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:36:58 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:56:00 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b179fdc2-ec5c-4137-813b-edc3f81d9d84" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4ffb6caf-7e86-429d-8adb-15e83bef413b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11999" ], "x-ms-correlation-request-id": [ - "894b33d9-5818-468f-ac00-1b20be6c378c" + "2135e5e0-c44c-4e69-8262-a7a54690fc0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063800Z:894b33d9-5818-468f-ac00-1b20be6c378c" + "WESTUS:20200207T035601Z:2135e5e0-c44c-4e69-8262-a7a54690fc0e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:37:59 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:57:00 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "397a5bb7-89af-40bc-a8ca-597cc53c1dd4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "365baa1c-3e1e-4b3c-a62d-c99eafb73504" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11997" ], "x-ms-correlation-request-id": [ - "6ec0b01b-7e1c-4fa8-80a9-980c1a0b7c61" + "654b5a50-761e-4e6a-89bf-96d0f3c49967" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T063900Z:6ec0b01b-7e1c-4fa8-80a9-980c1a0b7c61" + "WESTUS:20200207T035701Z:654b5a50-761e-4e6a-89bf-96d0f3c49967" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:39:00 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19VcGRhdGVfNDk0MTE5ZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlWY0dSaGRHVmZORGswTVRFNVpUVT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:58:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e2cac49-715d-41aa-a181-dec659ca88d0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c6160179-6a66-4b5b-bb42-f9e8081ec4af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11999" ], "x-ms-correlation-request-id": [ - "5fc44988-d270-4e6c-8edd-5737ed8811dd" + "c974b082-d3e4-4801-9690-8078b058fd2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T064001Z:5fc44988-d270-4e6c-8edd-5737ed8811dd" + "WESTUS:20200207T035801Z:c974b082-d3e4-4801-9690-8078b058fd2f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:40:00 GMT" - ], "Content-Length": [ - "2303" + "2375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4509,67 +5121,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzRJM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.172.16\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"10.0.1.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257\",\r\n \"name\": \"sdktestapim2257\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqLc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T02:45:30.9165032Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2257.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2257-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2257.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2257.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2257.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2257.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2257.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.213.133\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"10.0.1.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "595454c9-a320-445d-9b25-e8cfc2e4fcf7" + "eb3e7093-6c37-4875-99d2-3db64d745c17" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:58:01 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19UZXJtXzE4OTRiOGVk?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35336049-c9e1-4666-b825-73b7ecfc8493" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e517e5e1-a2a5-428c-a266-d38b4cfd3e55" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "740214b4-c08a-4c51-81e0-a54fcfa86a81" + "45fe58c4-c81e-46b7-bba5-5e228d1bf4dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T064001Z:740214b4-c08a-4c51-81e0-a54fcfa86a81" + "WESTUS:20200207T035802Z:45fe58c4-c81e-46b7-bba5-5e228d1bf4dd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:40:01 GMT" - ], "Content-Length": [ - "2102" + "2174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4578,227 +5190,227 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzRJQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"104.43.172.16\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"10.0.1.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257\",\r\n \"name\": \"sdktestapim2257\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqLg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2020-02-07T02:45:30.9165032Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2257.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2257-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2257.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2257.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2257.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2257.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"23.99.213.133\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"10.0.1.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.Network/virtualNetworks/apimvnet9686/subnets/apimsubnet2496\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVJsY20xZk5XRTVNRE16TWpRPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19UZXJtXzE4OTRiOGVk?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlVWlhKdFh6RTRPVFJpT0dWaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 03:59:02 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19UZXJtXzE4OTRiOGVk?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45ddbe35-3385-4c95-ac7c-999516ff49ad" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "30cf2951-e5b2-4d3e-9fa2-1aa65a41409d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11999" ], "x-ms-correlation-request-id": [ - "247e510c-bcc5-4d02-9e34-5799d94f354c" + "5f50c66e-aeae-4d2a-83cb-12ac1ee92403" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T064102Z:247e510c-bcc5-4d02-9e34-5799d94f354c" + "WESTUS:20200207T035902Z:5f50c66e-aeae-4d2a-83cb-12ac1ee92403" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:41:01 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVJsY20xZk5XRTVNRE16TWpRPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19UZXJtXzE4OTRiOGVk?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlVWlhKdFh6RTRPVFJpT0dWaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:00:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5d06dd9-3ffb-4e09-a590-846f306822dc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3feff31e-27f5-417e-8bf6-46bcc967bf37" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11998" ], "x-ms-correlation-request-id": [ - "926f4c6b-5ba6-4152-8df6-78c20cb108dd" + "48010c78-b85e-4b37-b5a7-5dada4c4e3d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T064202Z:926f4c6b-5ba6-4152-8df6-78c20cb108dd" + "WESTUS:20200207T040003Z:48010c78-b85e-4b37-b5a7-5dada4c4e3d9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:42:02 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVJsY20xZk5XRTVNRE16TWpRPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjI1N19UZXJtXzE4OTRiOGVk?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3L29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qSTFOMTlVWlhKdFh6RTRPVFJpT0dWaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:00:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fcc4681-4124-4a24-b0f5-0c2268c63de4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8082b98d-6674-4c84-b5e1-e6199299672a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11997" ], "x-ms-correlation-request-id": [ - "92bd312b-3ee1-4b23-a587-3c22d38759c1" + "57b64d6b-b914-41c7-909a-61a018097053" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T064202Z:92bd312b-3ee1-4b23-a587-3c22d38759c1" + "WESTUS:20200207T040003Z:57b64d6b-b914-41c7-909a-61a018097053" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:42:02 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9342/providers/Microsoft.ApiManagement/service/sdktestapim2257?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMjU3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d538c3b2-4f14-4b09-bcaa-b44f07332db3" + "f9bc1ff2-2184-4e43-8d76-bb1c3c080ec4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:00:03 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11996" ], "x-ms-request-id": [ - "39c4d6ce-b66c-4f07-ae9c-7fef67e82d03" + "93b000db-7c08-4922-a6a2-3104256f7376" ], "x-ms-correlation-request-id": [ - "39c4d6ce-b66c-4f07-ae9c-7fef67e82d03" + "93b000db-7c08-4922-a6a2-3104256f7376" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T064202Z:39c4d6ce-b66c-4f07-ae9c-7fef67e82d03" + "WESTUS:20200207T040003Z:93b000db-7c08-4922-a6a2-3104256f7376" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 06:42:02 GMT" - ], "Content-Length": [ "115" ], @@ -4809,18 +5421,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim1087\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim2257\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim1087", - "sdktestrg6588" + "sdktestapim2257", + "sdktestrg9342" ], "CreateInVirtualNetworkTests": [ - "apimvnet452", - "apimsubnet7750" + "apimvnet9686", + "apimsubnet2496" ] }, "Variables": { @@ -4828,8 +5440,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim1087", + "ServiceName": "sdktestapim2257", "Location": "Central US", - "ResourceGroup": "sdktestrg6588" + "ResourceGroup": "sdktestrg9342" } } \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateListDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateListDelete.json index d1634d3c0178..2e900790ff5c 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateListDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateListDelete.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "082ef640-dcd9-4055-8c5e-700b329e3be1" + "571df5ac-e3f5-4705-b58d-69001978a172" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:26:25 GMT" + ], "Pragma": [ "no-cache" ], @@ -30,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "51d2688a-0498-4926-a396-1323ca0ca23e" + "9c49cc2a-3e72-4151-8928-b6b68399ccbe" ], "x-ms-correlation-request-id": [ - "51d2688a-0498-4926-a396-1323ca0ca23e" + "9c49cc2a-3e72-4151-8928-b6b68399ccbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070216Z:51d2688a-0498-4926-a396-1323ca0ca23e" + "WESTUS:20200207T042626Z:9c49cc2a-3e72-4151-8928-b6b68399ccbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:02:16 GMT" + "Content-Length": [ + "2156" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg9348?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzkzNDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg6086?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzYwODY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46a27c55-a706-479d-9816-17d5e9dfadcd" + "656bd01c-9d1e-4e6a-952b-feebe2e9d52a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,6 +89,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:26:26 GMT" + ], "Pragma": [ "no-cache" ], @@ -96,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "cb6e163f-e43f-44b5-b6a0-1c7966043405" + "b627de52-234d-438d-bbe6-2faa6ee36bcf" ], "x-ms-correlation-request-id": [ - "cb6e163f-e43f-44b5-b6a0-1c7966043405" + "b627de52-234d-438d-bbe6-2faa6ee36bcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070218Z:cb6e163f-e43f-44b5-b6a0-1c7966043405" + "WESTUS:20200207T042627Z:b627de52-234d-438d-bbe6-2faa6ee36bcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:02:17 GMT" - ], "Content-Length": [ "182" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348\",\r\n \"name\": \"sdktestrg9348\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086\",\r\n \"name\": \"sdktestrg6086\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement/checkNameAvailability?api-version=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdktestapim1591\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdktestapim2063\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d996cc3f-3a7f-4de3-9772-613f66b0f3c7" + "64bab621-bb6f-4d1d-a8c1-38e1df125c9a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,33 +155,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:26:27 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56439f87-991f-4aef-a99d-543b718ec640" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "262123e5-ac19-469c-906a-fd693ed12b7e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "b97d8abf-b3ca-40d2-8d1e-c759d204df87" + "3d1e9088-e61e-4858-823f-119a3825c1d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070218Z:b97d8abf-b3ca-40d2-8d1e-c759d204df87" + "WESTUS:20200207T042628Z:3d1e9088-e61e-4858-823f-119a3825c1d5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:02:17 GMT" - ], "Content-Length": [ "52" ], @@ -196,22 +196,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5da6d61c-a754-495d-9191-4cb756c33227" + "422aeb54-4a4d-47c3-b7dc-be85194a667c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -224,45 +224,45 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:26:30 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzRiw=\"" + "\"AAAAAAABqOU=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0f3f5df-0302-4287-80d1-8ea60bc4d747", - "4de6fa67-fdbe-4a77-ba57-912f3c48370d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f217424b-07a2-4807-8eb0-fc6fc2bf5c82", + "9ae3bd7a-a00a-4fd1-a46b-62861430a7a4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "cf48cc8b-68b9-437d-94c7-4874ceae5002" + "2c7eaa84-17e4-46d7-8ba6-c2346eaea37f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070219Z:cf48cc8b-68b9-437d-94c7-4874ceae5002" + "WESTUS:20200207T042631Z:2c7eaa84-17e4-46d7-8ba6-c2346eaea37f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:02:18 GMT" - ], "Content-Length": [ - "1132" + "1158" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,1555 +271,2155 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591\",\r\n \"name\": \"sdktestapim1591\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzRiw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T07:02:18.8577084Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063\",\r\n \"name\": \"sdktestapim2063\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqOU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-07T04:26:29.8101647Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:27:31 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87031826-1cd4-43b8-83df-0eb8fb5e99e9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7bd22b2d-d14d-469c-9d55-f2da496cf015" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "e06ddb92-fd55-493f-b1e0-99665244d9b1" + "b1b51f38-c504-4f72-817e-d2aa5f13c950" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070319Z:e06ddb92-fd55-493f-b1e0-99665244d9b1" + "WESTUS:20200207T042731Z:b1b51f38-c504-4f72-817e-d2aa5f13c950" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:03:19 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:28:31 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cfc46e6-82f8-44f8-a64a-e89b680b1c33" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a9464a27-525b-4be4-9afa-f3b412af7ab1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "3a26e990-0d4c-4db3-8cec-f449cea2f990" + "4a470fd2-8ea3-4c9d-8772-ded77636ca99" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070419Z:3a26e990-0d4c-4db3-8cec-f449cea2f990" + "WESTUS:20200207T042832Z:4a470fd2-8ea3-4c9d-8772-ded77636ca99" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:04:19 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:29:31 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f927f89-9648-45f9-bf3f-f2654d3159e3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5c8eced6-4972-420e-aef7-a98ac24d6018" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "7fb92360-497a-4a2c-a285-01f501ef2632" + "3becad9d-12f1-4345-a8f3-3f461601ddd5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070520Z:7fb92360-497a-4a2c-a285-01f501ef2632" + "WESTUS:20200207T042932Z:3becad9d-12f1-4345-a8f3-3f461601ddd5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:05:19 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:30:32 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "989c24a7-16df-425e-acc8-f54b0b6bd17d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "35140271-dea3-48fe-a6a8-907b0ffe3e2b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "8dac6b27-3bfa-4a0a-b155-8784a69b12e2" + "98e3b967-d1c1-4640-9776-daf93124a7db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070620Z:8dac6b27-3bfa-4a0a-b155-8784a69b12e2" + "WESTUS:20200207T043032Z:98e3b967-d1c1-4640-9776-daf93124a7db" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:06:20 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:31:33 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1264ff40-c38d-422d-84d4-62f207946e6f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9c945623-59e1-45f6-b2fd-6ca33431d1f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "d8980aa5-6b34-427e-b065-6b48d9093a26" + "690406a9-1538-4425-8fda-6bb6f6c94108" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070720Z:d8980aa5-6b34-427e-b065-6b48d9093a26" + "WESTUS:20200207T043133Z:690406a9-1538-4425-8fda-6bb6f6c94108" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:07:20 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:32:33 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd3b44e8-b1ec-42b4-b05f-c56ccbf26032" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4ccaacf1-a4c2-438d-b722-00a692992519" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "d3d88f3d-99ed-477e-a78e-d237dd39ff7d" + "ca73456a-576e-41f7-bc06-5f9aec7f125a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070821Z:d3d88f3d-99ed-477e-a78e-d237dd39ff7d" + "WESTUS:20200207T043233Z:ca73456a-576e-41f7-bc06-5f9aec7f125a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:08:20 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:33:33 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8e0f315-5560-4a2e-8b1c-a798136cd631" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "34338620-c56b-4a56-9063-14414abd99af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "19517ff8-78b6-4121-827a-186d704f76cf" + "3aaee96d-c7b2-460d-8250-0c104d0b763e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T070921Z:19517ff8-78b6-4121-827a-186d704f76cf" + "WESTUS:20200207T043334Z:3aaee96d-c7b2-460d-8250-0c104d0b763e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:09:21 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:34:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1562a752-5c6c-4aca-9a31-083641a209dc" + "01fb5912-996b-47d8-a36e-c70bb701ec43" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "f088ae66-7e80-4c49-b43e-9a27fc4c3262" + "0d69caea-3416-493f-b051-639c063158c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071021Z:f088ae66-7e80-4c49-b43e-9a27fc4c3262" + "WESTUS:20200207T043434Z:0d69caea-3416-493f-b051-639c063158c1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:10:20 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:35:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86f1d25d-1771-4272-a70f-dd8ae983d4db" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "51a7df21-c554-4ab6-b06d-1f9a00d60d14" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "9f345e47-7cf8-429e-88c6-a8ed544cedb7" + "414f78c9-e8c7-4025-a277-edc5a76c4554" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071121Z:9f345e47-7cf8-429e-88c6-a8ed544cedb7" + "WESTUS:20200207T043534Z:414f78c9-e8c7-4025-a277-edc5a76c4554" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:11:21 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:36:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4657ad03-0e52-43b2-b917-9cc96cf08ff7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "63812d30-6fb2-4da2-8079-a8433782e7ce" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-correlation-request-id": [ - "3d88a372-a205-414f-bb6c-fb8126e14d9f" + "1c794677-4be3-4cb7-9096-e48fe6d88fe0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071222Z:3d88a372-a205-414f-bb6c-fb8126e14d9f" + "WESTUS:20200207T043635Z:1c794677-4be3-4cb7-9096-e48fe6d88fe0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:12:21 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:37:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f93a38c-4ae0-49a3-b94a-65ed9760d577" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cf7756d8-4485-4dba-b6fd-89c8d95b7b9b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-correlation-request-id": [ - "4444b0bb-8296-4a5e-854c-97ec98de7376" + "2ecf1d8e-4515-426b-80ad-1872da9fa8ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071322Z:4444b0bb-8296-4a5e-854c-97ec98de7376" + "WESTUS:20200207T043735Z:2ecf1d8e-4515-426b-80ad-1872da9fa8ec" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:13:22 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:38:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b862076-2a2a-4169-8004-2652f9be8e7a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a551d479-6b7d-4992-8853-b3e4688eac7d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-correlation-request-id": [ - "7ecf0702-6a4e-4394-b4a3-0199558b941b" + "b6e3967c-bebe-4ae0-acb4-9df61c88b913" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071423Z:7ecf0702-6a4e-4394-b4a3-0199558b941b" + "WESTUS:20200207T043835Z:b6e3967c-bebe-4ae0-acb4-9df61c88b913" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:14:22 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:39:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7752f642-6afc-4fa8-b90e-d29a40bccdd4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1e997594-a75b-48c6-b7bb-95d932040995" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "6fbd6306-9d51-47bd-91ab-036d48cd6232" + "b5bb2e89-f6b5-459a-9eb7-60122cddf363" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071523Z:6fbd6306-9d51-47bd-91ab-036d48cd6232" + "WESTUS:20200207T043936Z:b5bb2e89-f6b5-459a-9eb7-60122cddf363" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:15:22 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:40:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ccb658be-f538-45a3-9d8a-0e6e30bc2105" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c9883006-be40-4497-b14f-c60dccee0853" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-correlation-request-id": [ - "13f14269-eea4-4835-b3bc-3474d5d47d8d" + "53692dc8-723c-4ea6-94ac-172f5d909f6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071623Z:13f14269-eea4-4835-b3bc-3474d5d47d8d" + "WESTUS:20200207T044036Z:53692dc8-723c-4ea6-94ac-172f5d909f6a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:16:22 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:41:36 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bbe6d49-7711-44b1-9b06-bdc206af7835" + "58812915-c2e5-4086-b73c-2795a6affe3a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11998" ], "x-ms-correlation-request-id": [ - "90811f09-babe-4309-a906-f01c9dbc3284" + "0543ce21-5b39-46cf-8ec0-416684665891" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071723Z:90811f09-babe-4309-a906-f01c9dbc3284" + "WESTUS:20200207T044137Z:0543ce21-5b39-46cf-8ec0-416684665891" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:17:23 GMT" - ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:42:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bf1a4e7d-3a14-4b43-9c70-183c11c3d899" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6dc78d97-38e9-4889-8118-583c38710c67" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T044237Z:6dc78d97-38e9-4889-8118-583c38710c67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:43:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c2e9a96-a4c4-4bce-b04d-a1f612b4810c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c45fdb29-f66e-4e51-a628-57c8d5fac673" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T044337Z:c45fdb29-f66e-4e51-a628-57c8d5fac673" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:44:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "994f77ff-4145-4be9-9178-e45096f6a076" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "79ef6a77-c6fc-4d3e-b041-a4a622568c5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T044438Z:79ef6a77-c6fc-4d3e-b041-a4a622568c5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:45:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4a73999f-e44b-4849-ada9-b88259c666b7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "d8503a34-9f19-44b0-ba8f-930691cabf35" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T044538Z:d8503a34-9f19-44b0-ba8f-930691cabf35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:46:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1a138da9-7188-43eb-b82f-28ca0c83dbbf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "c88ab2d1-2f67-4145-89ef-b57a632c5a12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T044639Z:c88ab2d1-2f67-4145-89ef-b57a632c5a12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:47:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd0ec9ab-5468-4d18-80b9-efd1ec14f5d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "b9486c3e-b381-4af2-a7e0-92b9a947b5f2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T044739Z:b9486c3e-b381-4af2-a7e0-92b9a947b5f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:48:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff7d7700-8c7e-4fa6-9fc7-dd60d928e73d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c23cb19b-8a35-4d30-8d32-9bf737187026" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T044839Z:c23cb19b-8a35-4d30-8d32-9bf737187026" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:49:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "91ebbb43-1d14-49d4-9ef5-fc93bc760233" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1c6da961-7f7e-4b64-8ae7-4c6dad7ba448" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T044940Z:1c6da961-7f7e-4b64-8ae7-4c6dad7ba448" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], "Expires": [ "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:50:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "805fa66e-c51f-4d86-b6c2-fb47ea0f1bb7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "0f1adebf-2e55-4181-aa94-94edbdd48d1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T045040Z:0f1adebf-2e55-4181-aa94-94edbdd48d1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 04:51:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "16fce803-a03e-414e-b7d6-eb6abad87da8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1be97b07-8ced-4c1a-90d8-bcb9a103093a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T045141Z:1be97b07-8ced-4c1a-90d8-bcb9a103093a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Length": [ "0" + ], + "Expires": [ + "-1" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:52:41 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6a35b7c-3f8d-4feb-b62a-39e023f89626" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2231891f-7b00-4c96-b4a2-f62b9ee3c158" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-correlation-request-id": [ - "0371acfc-d49c-4248-b0c8-d0e3858b1317" + "c2635bf1-7b70-41ac-8358-5382f2e2ebad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071824Z:0371acfc-d49c-4248-b0c8-d0e3858b1317" + "WESTUS:20200207T045241Z:c2635bf1-7b70-41ac-8358-5382f2e2ebad" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:18:23 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:53:41 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "483b780b-8d57-4d0c-8e14-11a7e59efa1e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9cff0222-75c1-4509-8757-a409dc7237d8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-correlation-request-id": [ - "70696a85-0a68-4362-8d02-57defaa20b8e" + "8bdbd468-7dde-48f7-88c9-8bf6c181993b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T071924Z:70696a85-0a68-4362-8d02-57defaa20b8e" + "WESTUS:20200207T045342Z:8bdbd468-7dde-48f7-88c9-8bf6c181993b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:19:24 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:54:42 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b375fb90-222c-4365-be7a-66c89bd506e3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e3727995-b3ed-413a-be43-e5884e478eb9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-correlation-request-id": [ - "de8b5fdf-6460-47c7-8bbc-3c86dc598d4d" + "a7031b9f-632c-4549-ade2-a29e151536f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072024Z:de8b5fdf-6460-47c7-8bbc-3c86dc598d4d" + "WESTUS:20200207T045442Z:a7031b9f-632c-4549-ade2-a29e151536f4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:20:24 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:55:42 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ecaa9242-163b-4875-9286-ee0f52612558" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ad3a3eb0-2b98-436a-8d03-d11f64b7f9e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-correlation-request-id": [ - "3ece7517-752d-4c2f-b8a7-fdaeeb0c3d57" + "99982fa2-084d-4145-bb0d-beb50ec7b485" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072125Z:3ece7517-752d-4c2f-b8a7-fdaeeb0c3d57" + "WESTUS:20200207T045542Z:99982fa2-084d-4145-bb0d-beb50ec7b485" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:21:24 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:56:43 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5e908c9-4263-463e-ab4a-91d378316e38" + "53ecc1df-b93c-4a5f-a79c-f68c5f4c5396" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "dba694ce-4c91-4383-ae43-5aea8500599c" + "ec0f5760-844f-4749-a4cd-35ecc9559031" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072225Z:dba694ce-4c91-4383-ae43-5aea8500599c" + "WESTUS:20200207T045643Z:ec0f5760-844f-4749-a4cd-35ecc9559031" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:22:24 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:57:42 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9bc1a3e5-7a7e-41e9-bf74-c5a1f73843ab" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4211f550-5b8f-4986-863e-3681b585cb92" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-correlation-request-id": [ - "34dcdd11-6636-4aa7-b2e7-0848d552373c" + "ad46867e-b2ae-4504-a560-d720edaa2900" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072326Z:34dcdd11-6636-4aa7-b2e7-0848d552373c" + "WESTUS:20200207T045743Z:ad46867e-b2ae-4504-a560-d720edaa2900" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:23:25 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:58:43 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "326cae33-d542-48f2-ad80-ff584e2e14d5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "64d320e8-9d6d-4445-ac41-f4f94b44ea8f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-correlation-request-id": [ - "51add960-0421-4647-870a-3c08584e5732" + "9373db8e-e451-4f73-9813-e277fb07336d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072426Z:51add960-0421-4647-870a-3c08584e5732" + "WESTUS:20200207T045843Z:9373db8e-e451-4f73-9813-e277fb07336d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:24:26 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 04:59:43 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "014b1292-9acc-459d-a126-deccc70f0905" + "b3c8f5be-ec16-493c-8357-d4cdd3483ad8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11998" ], "x-ms-correlation-request-id": [ - "e27bba04-89ea-46aa-8194-65f1d7aaeb75" + "0285d03b-7526-4c0b-9f9a-2ebe83790be9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072526Z:e27bba04-89ea-46aa-8194-65f1d7aaeb75" + "WESTUS:20200207T045944Z:0285d03b-7526-4c0b-9f9a-2ebe83790be9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:25:25 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:00:44 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae78882d-fe61-4df8-bc7e-c13e3f808410" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e1d7947f-c807-4d3f-887c-08dd8e575be1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11997" ], "x-ms-correlation-request-id": [ - "d3ac99ef-42e8-451f-8e0c-0d905b7b1100" + "cae1c38f-83a3-49a3-bbd6-059386c59c7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072626Z:d3ac99ef-42e8-451f-8e0c-0d905b7b1100" + "WESTUS:20200207T050044Z:cae1c38f-83a3-49a3-bbd6-059386c59c7c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:26:26 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:01:44 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3fdca9d-4755-4add-bba0-13a939c85eca" + "e2dc50ce-ce88-4cca-8765-5c45faa5a5eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11996" ], "x-ms-correlation-request-id": [ - "9c17e2d3-ac47-4dad-8eec-1d4abfd48a61" + "052e6fe5-4b57-4b24-9075-6008ce16f923" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072727Z:9c17e2d3-ac47-4dad-8eec-1d4abfd48a61" + "WESTUS:20200207T050144Z:052e6fe5-4b57-4b24-9075-6008ce16f923" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:27:26 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19BY3RfZGIwMGVkZTk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlCWTNSZlpHSXdNR1ZrWlRrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:02:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8608411-05a2-4b40-b97c-096324153f76" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b32971e1-7770-459f-9384-9240ada5aac0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11995" ], "x-ms-correlation-request-id": [ - "0982e5fb-f31c-435a-a2b3-ab4a8b1f737f" + "dce18edc-1eb3-40b8-89d9-0b5f8d36fd72" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072828Z:0982e5fb-f31c-435a-a2b3-ab4a8b1f737f" + "WESTUS:20200207T050245Z:dce18edc-1eb3-40b8-89d9-0b5f8d36fd72" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:28:27 GMT" - ], "Content-Length": [ - "2047" + "2118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1828,61 +2428,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591\",\r\n \"name\": \"sdktestapim1591\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzSFg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T07:02:18.8577084Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1591.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1591-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1591.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1591.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1591.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1591.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.236.232\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063\",\r\n \"name\": \"sdktestapim2063\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqRI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T04:26:29.8101647Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2063.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2063-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2063.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2063.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2063.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2063.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2063.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.150.225\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e51bd0b-c6fe-40ae-b606-380dd09b7fd1" + "6b6b8c98-5509-42bf-9798-193eb40f5316" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:02:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d0cac87-864a-4599-b07e-2511436ae4e9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9ebe2bb4-8153-443a-9ab6-0bd63b7c947e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11994" ], "x-ms-correlation-request-id": [ - "cf70d4e8-472a-4e3b-aaed-7a981f958c32" + "60caaaa4-a2b6-4fe9-a4fe-8225d7539f5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072829Z:cf70d4e8-472a-4e3b-aaed-7a981f958c32" + "WESTUS:20200207T050245Z:60caaaa4-a2b6-4fe9-a4fe-8225d7539f5c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:28:28 GMT" - ], "Content-Length": [ - "2059" + "2130" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1891,61 +2491,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591\",\r\n \"name\": \"sdktestapim1591\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzSFg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T07:02:18.8577084Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1591.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1591-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1591.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1591.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1591.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1591.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.236.232\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063\",\r\n \"name\": \"sdktestapim2063\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqRI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T04:26:29.8101647Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2063.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2063-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2063.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2063.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2063.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2063.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2063.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.150.225\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/getssotoken?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL2dldHNzb3Rva2VuP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/getssotoken?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL2dldHNzb3Rva2VuP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "999f52dd-815a-4ed9-be3f-cda7701ad250" + "c4b569a7-6037-4a25-9bf4-0cdf9d148be2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:02:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e8719ec-0260-4dd0-8b3b-f8e5982cb452" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "71a40196-bb05-4d1e-86b8-88ed282bb24c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "b7c5f94c-6540-4ace-9872-fc609bfaf887" + "9e15d26f-11d7-4bb8-adcc-6db157af2b32" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072829Z:b7c5f94c-6540-4ace-9872-fc609bfaf887" + "WESTUS:20200207T050245Z:9e15d26f-11d7-4bb8-adcc-6db157af2b32" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:28:29 GMT" - ], "Content-Length": [ - "199" + "203" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1954,67 +2554,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"redirectUri\": \"https://sdktestapim1591.portal.azure-api.net:443/signin-sso?token=1%26201904110733%26lB0ngLI7wLAwvfrSEWaI7utZiMQ8exI9LeFvkMjq62DY7fY571acSETNCMeKt%2bamZGJEVIg5dl%2btg1YxpVRDdg%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"redirectUri\": \"https://sdktestapim2063.portal.azure-api.net:443/signin-sso?token=1%26202002070507%26cY%2b6pxndxsy4ytbtRoljTIUkqLHeXGWFYrXgeMiu3edIWVDGXUx4J%2b%2b0t0dqcWbgjMwJ6LYDHN%2fZBuL6a1Fw0Q%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baf0ca9e-a561-4ada-8027-866d79c7e40b" + "1e5d499a-23c3-4084-a1db-ae38c0b969bc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:02:45 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19UZXJtX2QzMTMwNzVj?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50386874-0dd8-4757-9882-7f8b4273142e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "66b6d0ce-dca4-4b6f-b800-cbf620a51390" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "fe131526-3a10-47ea-85e6-51570b908b01" + "52b5713d-683c-4aed-8303-ae62dd7e9195" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072830Z:fe131526-3a10-47ea-85e6-51570b908b01" + "WESTUS:20200207T050246Z:52b5713d-683c-4aed-8303-ae62dd7e9195" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:28:30 GMT" - ], "Content-Length": [ - "1846" + "1917" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2023,227 +2623,227 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591\",\r\n \"name\": \"sdktestapim1591\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzSF4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T07:02:18.8577084Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1591.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1591-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1591.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1591.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1591.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"13.89.236.232\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063\",\r\n \"name\": \"sdktestapim2063\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqRM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2020-02-07T04:26:29.8101647Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2063.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2063-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2063.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim2063.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2063.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2063.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.78.150.225\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMVJsY20xZk5HUmtNakEwT1RFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19UZXJtX2QzMTMwNzVj?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlVWlhKdFgyUXpNVE13TnpWaj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:03:46 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19UZXJtX2QzMTMwNzVj?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a3ee087-05d4-4a29-8779-7dd8ee068c2f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a9e9469f-52d8-475f-9f8a-f8bc174d180e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11997" ], "x-ms-correlation-request-id": [ - "5fa22bb3-b18b-49d5-a0ce-8c4495cf56c0" + "2df079c9-5875-44c4-8879-a750b13f5791" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T072931Z:5fa22bb3-b18b-49d5-a0ce-8c4495cf56c0" + "WESTUS:20200207T050346Z:2df079c9-5875-44c4-8879-a750b13f5791" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:29:30 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMVJsY20xZk5HUmtNakEwT1RFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19UZXJtX2QzMTMwNzVj?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlVWlhKdFgyUXpNVE13TnpWaj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:04:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f486afd1-e76e-484c-b009-aa7cba807644" + "1b0bf718-8c3b-441b-a5ac-c9b67f2d7a6c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "49e19a76-fc26-43a1-b9bd-cc93f540b35e" + "57e804ba-6676-4608-98c6-3fbf9de54b1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073031Z:49e19a76-fc26-43a1-b9bd-cc93f540b35e" + "WESTUS:20200207T050446Z:57e804ba-6676-4608-98c6-3fbf9de54b1a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:30:30 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMVJsY20xZk5HUmtNakEwT1RFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjA2M19UZXJtX2QzMTMwNzVj?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1qQTJNMTlVWlhKdFgyUXpNVE13TnpWaj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:04:46 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2eb3eb61-0868-45b3-b6ff-743d0704729f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "62805a0e-6990-4a91-b758-94693ac93327" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11998" ], "x-ms-correlation-request-id": [ - "ff46f42a-af04-494e-a224-ba2621f6f3bf" + "ab518ec6-aed0-41de-8026-67085698e48a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073031Z:ff46f42a-af04-494e-a224-ba2621f6f3bf" + "WESTUS:20200207T050446Z:ab518ec6-aed0-41de-8026-67085698e48a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:30:31 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6086/providers/Microsoft.ApiManagement/service/sdktestapim2063?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzYwODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yMDYzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e3082b1-2b15-461d-86a5-0ce4d8084682" + "21c5336a-5ccd-43c7-b6a0-66eff2868730" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 05:04:46 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11997" ], "x-ms-request-id": [ - "7c82991c-c056-47f7-851d-553c6d18f7fe" + "ccf0a2c6-4198-4e95-b929-df8868f98021" ], "x-ms-correlation-request-id": [ - "7c82991c-c056-47f7-851d-553c6d18f7fe" + "ccf0a2c6-4198-4e95-b929-df8868f98021" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T073032Z:7c82991c-c056-47f7-851d-553c6d18f7fe" + "WESTUS:20200207T050447Z:ccf0a2c6-4198-4e95-b929-df8868f98021" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 07:30:31 GMT" - ], "Content-Length": [ "115" ], @@ -2254,14 +2854,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim1591\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim2063\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim1591", - "sdktestrg9348" + "sdktestapim2063", + "sdktestrg6086" ] }, "Variables": { @@ -2269,8 +2869,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim1591", + "ServiceName": "sdktestapim2063", "Location": "Central US", - "ResourceGroup": "sdktestrg9348" + "ResourceGroup": "sdktestrg6086" } } \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateMultiHostNameService.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateMultiHostNameService.json index c49e93031fd7..9d59317538e6 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateMultiHostNameService.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateMultiHostNameService.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9071d86-3c9a-470a-8128-78f0b6952a33" + "82521bab-07c2-4158-b2d5-75033b0a0e62" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:11:27 GMT" + "Fri, 07 Feb 2020 06:30:15 GMT" ], "Pragma": [ "no-cache" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "b7c88395-5b83-48c8-88e8-47439abf62c3" + "4bbc5941-9ef6-419e-8c18-d7f4f1eeae5b" ], "x-ms-correlation-request-id": [ - "b7c88395-5b83-48c8-88e8-47439abf62c3" + "4bbc5941-9ef6-419e-8c18-d7f4f1eeae5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201127Z:b7c88395-5b83-48c8-88e8-47439abf62c3" + "WESTUS:20200207T063016Z:4bbc5941-9ef6-419e-8c18-d7f4f1eeae5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "1941" + "2156" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg2264?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzIyNjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg7073?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzcwNzM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bf699433-6be9-4483-8d20-3319e517c57e" + "53bf0d7d-8271-469c-871d-66f8de9209c6" ], "accept-language": [ "en-US" @@ -75,7 +75,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:11:28 GMT" + "Fri, 07 Feb 2020 06:30:16 GMT" ], "Pragma": [ "no-cache" @@ -99,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "559a9130-e1bb-4770-8dad-15f1ab7aef16" + "2a8a213d-409c-4a88-abba-d963925770b1" ], "x-ms-correlation-request-id": [ - "559a9130-e1bb-4770-8dad-15f1ab7aef16" + "2a8a213d-409c-4a88-abba-d963925770b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201128Z:559a9130-e1bb-4770-8dad-15f1ab7aef16" + "WESTUS:20200207T063017Z:2a8a213d-409c-4a88-abba-d963925770b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264\",\r\n \"name\": \"sdktestrg2264\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073\",\r\n \"name\": \"sdktestrg7073\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": \"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\",\r\n \"certificatePassword\": \"Password\",\r\n \"negotiateClientCertificate\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": \"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\",\r\n \"certificatePassword\": \"Password\"\r\n }\r\n ],\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"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\",\r\n \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"negotiateClientCertificate\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": \"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\",\r\n \"certificatePassword\": \"Password\"\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportal1.msitesting.net\",\r\n \"encodedCertificate\": \"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\",\r\n \"certificatePassword\": \"Password\"\r\n }\r\n ],\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "76469360-0719-4173-9a49-e880724482ce" + "f36aad3c-90e3-4c7f-a77d-9032be2040e9" ], "accept-language": [ "en-US" @@ -141,14 +141,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8182" + "10785" ] }, "ResponseHeaders": { @@ -156,16 +156,16 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:11:30 GMT" + "Fri, 07 Feb 2020 06:30:21 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFze84=\"" + "\"AAAAAAABqXs=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -177,23 +177,23 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02492fcc-b0a4-4616-9d7f-d30669c26b69", - "53a9bd69-bb36-4973-b89d-5fceb43daa94" + "900b40a1-0f80-49d0-a708-e05561963896", + "7780e9c9-4b0f-4515-a664-cccb095bcfc1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "c6678371-ed6d-4a3b-9136-b223025676bd" + "3bb426d7-e014-413e-8d1c-c218cd86c11b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201131Z:c6678371-ed6d-4a3b-9136-b223025676bd" + "WESTUS:20200207T063022Z:3bb426d7-e014-413e-8d1c-c218cd86c11b" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "2109" + "2474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,17 +202,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866\",\r\n \"name\": \"sdktestapim2866\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFze84=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T20:11:30.3999871Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992\",\r\n \"name\": \"sdktestapim1992\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqXs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-07T06:30:20.4751942Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2866.azure-api.net\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1992.azure-api.net\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportal1.msitesting.net\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d16ec62-9ec5-4a0e-b8de-2c9c37869fac" + "8f1b901a-7021-45ab-a237-915e1b9153e6" ], "accept-language": [ "en-US" @@ -220,14 +220,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2523" + "2906" ] }, "ResponseHeaders": { @@ -235,13 +235,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:28:57 GMT" + "Fri, 07 Feb 2020 06:54:31 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzfTQ=\"" + "\"AAAAAAABqY8=\"" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -250,23 +250,23 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e44c05b5-dbe6-450b-ab57-8137ca62e493", - "11eccbf8-ae05-4606-a36a-a23652bd754f" + "05f73a0c-d4c8-451f-b08a-fd2b5f53088e", + "b581e1cd-2ce8-4b38-b769-958fac7de77e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "7b35cf53-ce35-4e46-a0f9-3f953a313acb" + "9bb0e66f-8954-403a-958a-c6e9fa87b944" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202857Z:7b35cf53-ce35-4e46-a0f9-3f953a313acb" + "WESTUS:20200207T065432Z:9bb0e66f-8954-403a-958a-c6e9fa87b944" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "3041" + "3451" ], "Content-Type": [ "application/json; charset=utf-8" @@ -275,20 +275,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866\",\r\n \"name\": \"sdktestapim2866\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzfTQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T20:11:30.3999871Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2866.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2866-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2866.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2866.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2866.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2866.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.115.230\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992\",\r\n \"name\": \"sdktestapim1992\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqY8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T06:30:20.4751942Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1992.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1992-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1992.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim1992.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1992.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1992.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1992.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.215.144\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -296,13 +296,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:12:30 GMT" + "Fri, 07 Feb 2020 06:31:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -314,16 +314,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0174714a-6e22-4c23-b910-0b5dda0f44b8" + "bce2070a-7706-4c20-9cb2-d8f265dc9f93" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "370e4f71-e2e1-4e5b-b204-c5a465569916" + "20277918-9913-44a0-a6ca-b268de962c03" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201231Z:370e4f71-e2e1-4e5b-b204-c5a465569916" + "WESTUS:20200207T063123Z:20277918-9913-44a0-a6ca-b268de962c03" ], "X-Content-Type-Options": [ "nosniff" @@ -339,16 +339,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -356,13 +356,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:13:30 GMT" + "Fri, 07 Feb 2020 06:32:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -374,16 +374,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3fa50170-5e13-4b3b-833f-83c698a76906" + "064e92e2-ad07-4e94-b271-18d749137219" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "8aafd6a9-2be3-4827-9e2e-67e77495ce90" + "787dcb77-70b5-452e-be6f-5e6ff119994c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201331Z:8aafd6a9-2be3-4827-9e2e-67e77495ce90" + "WESTUS:20200207T063223Z:787dcb77-70b5-452e-be6f-5e6ff119994c" ], "X-Content-Type-Options": [ "nosniff" @@ -399,16 +399,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -416,13 +416,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:14:32 GMT" + "Fri, 07 Feb 2020 06:33:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -434,16 +434,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fbb5029d-5686-4f69-a31b-54fb8d9aaca3" + "3b19e93a-f063-4152-af82-564a97d31fa3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "b2d5b39b-49b0-435e-be79-0a63e7e60ee0" + "f3f71f59-891f-4b78-a517-fba38be5e6c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201432Z:b2d5b39b-49b0-435e-be79-0a63e7e60ee0" + "WESTUS:20200207T063323Z:f3f71f59-891f-4b78-a517-fba38be5e6c7" ], "X-Content-Type-Options": [ "nosniff" @@ -459,16 +459,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -476,13 +476,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:15:31 GMT" + "Fri, 07 Feb 2020 06:34:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -494,16 +494,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50ca78c6-ac9c-4fdb-9b23-004336fe51d4" + "f42440ca-06ab-4cab-878b-c2414ca24bf2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "48d2fa16-8c0e-404c-a346-3b2bc5d7b316" + "94ed0db4-de43-4071-a86e-27a7dc386839" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201532Z:48d2fa16-8c0e-404c-a346-3b2bc5d7b316" + "WESTUS:20200207T063424Z:94ed0db4-de43-4071-a86e-27a7dc386839" ], "X-Content-Type-Options": [ "nosniff" @@ -519,16 +519,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -536,13 +536,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:16:32 GMT" + "Fri, 07 Feb 2020 06:35:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -554,16 +554,76 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d90b0598-794a-4cb9-8282-c11e08d4e249" + "9fce03af-455e-4eda-afa0-4618fe7f63e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "84a42937-ed2a-40ff-ba0a-646c5272f810" + "598a10af-3e28-4621-bcb6-3cfa07dfb1e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T063524Z:598a10af-3e28-4621-bcb6-3cfa07dfb1e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 06:36:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7103c3f0-eeba-4f65-9395-fb94ac014b09" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b5474e39-62d4-4425-a89e-df2e70a38ead" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201633Z:84a42937-ed2a-40ff-ba0a-646c5272f810" + "WESTUS:20200207T063624Z:b5474e39-62d4-4425-a89e-df2e70a38ead" ], "X-Content-Type-Options": [ "nosniff" @@ -579,16 +639,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -596,13 +656,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:17:32 GMT" + "Fri, 07 Feb 2020 06:37:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -614,16 +674,76 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf5219f9-96c5-4287-9705-9b0b0e1ef66a" + "4320ad96-6650-4874-aac0-6bbec235d423" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "13fd1f0b-6ca4-4758-90b4-85cdcfacd725" + "2276b8ba-0df0-4ab8-b106-c9edf9fb95f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T063725Z:2276b8ba-0df0-4ab8-b106-c9edf9fb95f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 06:38:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bf3d60d7-1987-4adc-96cd-c90985a6ff21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "bd5afc9f-819b-4929-bb75-bd7f1cf6730e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201733Z:13fd1f0b-6ca4-4758-90b4-85cdcfacd725" + "WESTUS:20200207T063825Z:bd5afc9f-819b-4929-bb75-bd7f1cf6730e" ], "X-Content-Type-Options": [ "nosniff" @@ -639,16 +759,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -656,13 +776,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:18:32 GMT" + "Fri, 07 Feb 2020 06:39:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -674,16 +794,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca452b29-4b7d-496b-9e0d-51f4633b13c4" + "0b7229b6-784e-43a9-af4b-7431f7b9dff6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "beaf1147-71ba-425e-8946-f2de0dec72f5" + "152dbf69-09bd-4650-9c70-de54d46b7950" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201833Z:beaf1147-71ba-425e-8946-f2de0dec72f5" + "WESTUS:20200207T063925Z:152dbf69-09bd-4650-9c70-de54d46b7950" ], "X-Content-Type-Options": [ "nosniff" @@ -699,16 +819,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -716,13 +836,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:19:33 GMT" + "Fri, 07 Feb 2020 06:40:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -734,16 +854,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67838778-92b4-4129-891f-b282e9e78f17" + "99b213e1-7b87-42f1-8942-80813b2b524f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "c629f4f6-515e-44d1-8180-6ac83adf3ed3" + "73915af4-6740-489f-93db-b1bde63752a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T201933Z:c629f4f6-515e-44d1-8180-6ac83adf3ed3" + "WESTUS:20200207T064023Z:73915af4-6740-489f-93db-b1bde63752a9" ], "X-Content-Type-Options": [ "nosniff" @@ -759,16 +879,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -776,13 +896,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:20:33 GMT" + "Fri, 07 Feb 2020 06:41:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -794,16 +914,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b296d1bd-7862-4c56-a146-1b9b238ff1e8" + "1c0e1247-0cd5-4fab-af63-e41d3f4ca1b7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "e43be248-896c-4577-8459-45774c92b5a9" + "f6df7d5d-3295-4a3a-903a-f039b16f2ff7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202034Z:e43be248-896c-4577-8459-45774c92b5a9" + "WESTUS:20200207T064126Z:f6df7d5d-3295-4a3a-903a-f039b16f2ff7" ], "X-Content-Type-Options": [ "nosniff" @@ -819,16 +939,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -836,13 +956,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:21:33 GMT" + "Fri, 07 Feb 2020 06:42:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -854,16 +974,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e20816c-c11e-41f5-84e8-f77da32deb34" + "4e5a04c1-b71b-44e2-ad9c-a9b81686d884" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "7b1b2016-ce8f-4a05-a662-66cfe0c782ce" + "46f1ddb5-b29f-4615-9732-2dcd084295b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202134Z:7b1b2016-ce8f-4a05-a662-66cfe0c782ce" + "WESTUS:20200207T064226Z:46f1ddb5-b29f-4615-9732-2dcd084295b6" ], "X-Content-Type-Options": [ "nosniff" @@ -879,16 +999,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -896,13 +1016,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:22:34 GMT" + "Fri, 07 Feb 2020 06:43:26 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -914,16 +1034,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f958879-0507-4945-8bb1-35b289eb860a" + "be5769d3-07f4-418b-981c-6a973f8190dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "fde90046-2a27-40a2-a5c8-46b88e6cd050" + "c63b6156-08ca-40da-a8c4-7dd9126f6c20" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202234Z:fde90046-2a27-40a2-a5c8-46b88e6cd050" + "WESTUS:20200207T064326Z:c63b6156-08ca-40da-a8c4-7dd9126f6c20" ], "X-Content-Type-Options": [ "nosniff" @@ -939,16 +1059,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -956,13 +1076,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:23:34 GMT" + "Fri, 07 Feb 2020 06:44:26 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -974,16 +1094,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62d8f21a-b196-492d-94b0-af7edc8bd708" + "8133cb38-cd90-462b-b5cd-4844aecfdb34" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "f9f6eae6-466f-4e1c-a45c-a9b2b854e4f0" + "c2d3d427-7600-4941-9348-8369cbd0709f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202335Z:f9f6eae6-466f-4e1c-a45c-a9b2b854e4f0" + "WESTUS:20200207T064427Z:c2d3d427-7600-4941-9348-8369cbd0709f" ], "X-Content-Type-Options": [ "nosniff" @@ -999,16 +1119,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1016,13 +1136,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:24:35 GMT" + "Fri, 07 Feb 2020 06:45:26 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1034,16 +1154,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10ef6d70-ca8d-4ae8-bd93-8f1e06b6ed6d" + "f047d517-f5f1-4b36-b14a-c11e83d42fbb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "5617baa1-fa30-4d01-8aad-ed842f01e377" + "b95b8333-e721-437e-a687-052aa0f81433" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202435Z:5617baa1-fa30-4d01-8aad-ed842f01e377" + "WESTUS:20200207T064527Z:b95b8333-e721-437e-a687-052aa0f81433" ], "X-Content-Type-Options": [ "nosniff" @@ -1059,16 +1179,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1076,13 +1196,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:25:36 GMT" + "Fri, 07 Feb 2020 06:46:27 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1094,16 +1214,76 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "84b6b4c2-5e6e-44a8-9f17-4df8149c278e" + "88d83246-6eec-4b51-a7a4-98cac92aa279" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "e0cd3564-d370-454d-9e0f-a61ce351fbd6" + "bd6d24e5-e3a9-4d09-9b5e-72519ba6d09d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T064627Z:bd6d24e5-e3a9-4d09-9b5e-72519ba6d09d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 06:47:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "68eea2a0-68e0-4a93-b4a5-ab554adb1014" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "bb57a74a-b6cc-437d-8011-30b5b72ab59e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202536Z:e0cd3564-d370-454d-9e0f-a61ce351fbd6" + "WESTUS:20200207T064728Z:bb57a74a-b6cc-437d-8011-30b5b72ab59e" ], "X-Content-Type-Options": [ "nosniff" @@ -1119,16 +1299,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1136,13 +1316,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:26:36 GMT" + "Fri, 07 Feb 2020 06:48:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1154,16 +1334,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b632011f-6fd6-4406-969b-5733f33b4b82" + "9c87ead2-7b06-456a-98c5-4bb1b628eadc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "40d94714-c599-4f28-bab0-6ca48d195510" + "5dd86671-d99b-4e88-a270-f96eff055466" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202636Z:40d94714-c599-4f28-bab0-6ca48d195510" + "WESTUS:20200207T064828Z:5dd86671-d99b-4e88-a270-f96eff055466" ], "X-Content-Type-Options": [ "nosniff" @@ -1179,16 +1359,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1196,13 +1376,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:27:35 GMT" + "Fri, 07 Feb 2020 06:49:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1214,16 +1394,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b337334-b340-4f0f-b8fa-13d76ae3474b" + "446a67d6-701c-48fb-b4cf-2a8ef88dbd0b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "ce2d4f4b-b778-49e4-bd30-2c1c5d3d3cfe" + "4a59df07-4e0a-463b-8a12-bd53f72ca8e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202736Z:ce2d4f4b-b778-49e4-bd30-2c1c5d3d3cfe" + "WESTUS:20200207T064928Z:4a59df07-4e0a-463b-8a12-bd53f72ca8e1" ], "X-Content-Type-Options": [ "nosniff" @@ -1239,16 +1419,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1256,11 +1436,17 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:28:56 GMT" + "Fri, 07 Feb 2020 06:50:28 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], @@ -1268,22 +1454,256 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bfedd02d-097a-4140-a227-be6ac8ff1550" + "979220e5-51a8-4950-bfcc-5ba27556fea8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "e53ab6db-1fee-415d-8259-af2bf7d8b277" + "7f33eb81-4037-4047-9013-44f1d8d3325e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T065028Z:7f33eb81-4037-4047-9013-44f1d8d3325e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 06:51:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d75122a-9cc3-4117-aabc-7126322b05c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "515530dd-4859-401d-b1e6-fa8f3d3590f2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T065129Z:515530dd-4859-401d-b1e6-fa8f3d3590f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 06:52:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b17aea6-1039-485a-a4d8-c96facb6d2d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "06639b4e-4db0-43a2-9df5-e70732189932" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T065229Z:06639b4e-4db0-43a2-9df5-e70732189932" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 06:53:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "732713e8-f587-4d5a-9235-a3038e828d8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f0a7bcbd-ad8c-40a7-8620-b5d0d6237605" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T065330Z:f0a7bcbd-ad8c-40a7-8620-b5d0d6237605" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9BY3RfN2IzYjU5NWM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlCWTNSZk4ySXpZalU1TldNPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 06:54:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c836671c-59c2-46a8-8ee1-04e470397b6d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ad82c0a8-7d67-48f4-870f-4b326242092c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202856Z:e53ab6db-1fee-415d-8259-af2bf7d8b277" + "WESTUS:20200207T065430Z:ad82c0a8-7d67-48f4-870f-4b326242092c" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "3025" + "3435" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1292,17 +1712,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866\",\r\n \"name\": \"sdktestapim2866\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzfSs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T20:11:30.3999871Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2866.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2866-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2866.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2866.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2866.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2866.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.115.230\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992\",\r\n \"name\": \"sdktestapim1992\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqY4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T06:30:20.4751942Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1992.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1992-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1992.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim1992.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1992.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1992.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1992.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.215.144\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bbfc760-3e58-43b6-84b0-16fb040dd351" + "a44fc7e0-3205-4e54-b10d-b75b763668f2" ], "accept-language": [ "en-US" @@ -1310,8 +1730,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1319,13 +1739,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:28:58 GMT" + "Fri, 07 Feb 2020 06:54:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9UZXJtXzJjMzk3MjMz?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1337,22 +1757,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d3f6ff1-7a4b-4459-a68d-23201bdcb50c" + "9a069eb1-c4ef-4189-8755-19f9fe85874f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "3897b9eb-3751-40e3-b819-caabd5057270" + "3f6681a6-8445-4295-ba6d-436a5aa8d8e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202858Z:3897b9eb-3751-40e3-b819-caabd5057270" + "WESTUS:20200207T065432Z:3f6681a6-8445-4295-ba6d-436a5aa8d8e6" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "2838" + "2909" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1361,20 +1781,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866\",\r\n \"name\": \"sdktestapim2866\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzfTU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T20:11:30.3999871Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2866.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2866-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2866.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2866.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2866.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.115.230\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992\",\r\n \"name\": \"sdktestapim1992\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqZA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2020-02-07T06:30:20.4751942Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1992.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1992-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1992.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim1992.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1992.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1992.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.215.144\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMVJsY20xZk16QmhZamMzWmpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9UZXJtXzJjMzk3MjMz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlVWlhKdFh6SmpNemszTWpNej9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1382,13 +1802,13 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:29:58 GMT" + "Fri, 07 Feb 2020 06:55:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9UZXJtXzJjMzk3MjMz?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1400,16 +1820,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b18eb77-1d0d-4ee4-a27f-6b9652ec1e98" + "816739ff-e0c9-47bd-a057-6141cd014549" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "57aaffec-2911-4aa3-8bb6-8da2203ff4d9" + "8fc54a50-df90-4065-a4e7-f509baaad499" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202958Z:57aaffec-2911-4aa3-8bb6-8da2203ff4d9" + "WESTUS:20200207T065533Z:8fc54a50-df90-4065-a4e7-f509baaad499" ], "X-Content-Type-Options": [ "nosniff" @@ -1425,16 +1845,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMVJsY20xZk16QmhZamMzWmpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9UZXJtXzJjMzk3MjMz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlVWlhKdFh6SmpNemszTWpNej9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1442,7 +1862,7 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:30:58 GMT" + "Fri, 07 Feb 2020 06:56:32 GMT" ], "Pragma": [ "no-cache" @@ -1454,16 +1874,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68b49604-2a17-4034-8bbd-8c891a41c079" + "6fac0fdf-c6f3-446f-9deb-da3ca9521a81" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "160e5bbe-ceb2-4de5-9c9f-68217cb4ba81" + "aed0d9b6-c46e-47b3-89a3-45544f7acc6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T203058Z:160e5bbe-ceb2-4de5-9c9f-68217cb4ba81" + "WESTUS:20200207T065633Z:aed0d9b6-c46e-47b3-89a3-45544f7acc6b" ], "X-Content-Type-Options": [ "nosniff" @@ -1479,16 +1899,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMVJsY20xZk16QmhZamMzWmpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMTk5Ml9UZXJtXzJjMzk3MjMz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE1UazVNbDlVWlhKdFh6SmpNemszTWpNej9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1496,7 +1916,7 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:30:59 GMT" + "Fri, 07 Feb 2020 06:56:33 GMT" ], "Pragma": [ "no-cache" @@ -1508,16 +1928,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "544ab162-38d2-4f6f-9e5f-82f90834b880" + "51fa91e6-1494-431d-8a2e-3f9e8b6d1f16" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "bc4015e4-7ad6-420b-b6f7-d5f940079fb7" + "8c53626c-aba1-400b-8267-174867de2623" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T203059Z:bc4015e4-7ad6-420b-b6f7-d5f940079fb7" + "WESTUS:20200207T065633Z:8c53626c-aba1-400b-8267-174867de2623" ], "X-Content-Type-Options": [ "nosniff" @@ -1533,13 +1953,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7073/providers/Microsoft.ApiManagement/service/sdktestapim1992?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xOTkyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78424e86-f3e9-43f4-8cab-c3996c07b09b" + "3c13866f-1f23-41c6-bad4-396a2fbec099" ], "accept-language": [ "en-US" @@ -1547,8 +1967,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { @@ -1556,7 +1976,7 @@ "no-cache" ], "Date": [ - "Thu, 11 Apr 2019 20:30:59 GMT" + "Fri, 07 Feb 2020 06:56:33 GMT" ], "Pragma": [ "no-cache" @@ -1568,16 +1988,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "be109a3b-57e5-4142-82dd-e19e4685c65c" + "7433a010-52f4-41c8-b3a1-67f725eb19ba" ], "x-ms-correlation-request-id": [ - "be109a3b-57e5-4142-82dd-e19e4685c65c" + "7433a010-52f4-41c8-b3a1-67f725eb19ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T203059Z:be109a3b-57e5-4142-82dd-e19e4685c65c" + "WESTUS:20200207T065633Z:7433a010-52f4-41c8-b3a1-67f725eb19ba" ], "X-Content-Type-Options": [ "nosniff" @@ -1592,14 +2012,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim2866\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim1992\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim2866", - "sdktestrg2264" + "sdktestapim1992", + "sdktestrg7073" ] }, "Variables": { @@ -1607,8 +2027,8 @@ "TestCertificate": "MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim2866", + "ServiceName": "sdktestapim1992", "Location": "Central US", - "ResourceGroup": "sdktestrg2264" + "ResourceGroup": "sdktestrg7073" } } \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateMultiRegionService.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateMultiRegionService.json index 4643d9b745e7..cd7063b216e1 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateMultiRegionService.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/CreateMultiRegionService.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d277413-82b7-4006-836f-c4dddc426916" + "3b470bc7-a022-4ca4-9644-0eb459f870c4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:05:43 GMT" + ], "Pragma": [ "no-cache" ], @@ -30,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "cba2f5a1-8bd2-45f8-b9cf-57fbd324c5f4" + "7aa4923a-cc88-4656-ad24-d8d935bdfe5b" ], "x-ms-correlation-request-id": [ - "cba2f5a1-8bd2-45f8-b9cf-57fbd324c5f4" + "7aa4923a-cc88-4656-ad24-d8d935bdfe5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082536Z:cba2f5a1-8bd2-45f8-b9cf-57fbd324c5f4" + "WESTUS:20200207T060544Z:7aa4923a-cc88-4656-ad24-d8d935bdfe5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,20 +47,17 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:25:35 GMT" + "Content-Length": [ + "2156" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { @@ -67,15 +67,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3460efe-d963-4b8d-9d73-69389987ae2a" + "7d1a7cfd-6f00-4a38-9271-b2a7b9705ffc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -83,6 +83,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:05:44 GMT" + ], "Pragma": [ "no-cache" ], @@ -90,13 +93,13 @@ "11998" ], "x-ms-request-id": [ - "c62963b5-62b3-4801-b9e7-6a59f051c8ac" + "5e22e666-a615-44f8-b210-7675cbda6731" ], "x-ms-correlation-request-id": [ - "c62963b5-62b3-4801-b9e7-6a59f051c8ac" + "5e22e666-a615-44f8-b210-7675cbda6731" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082537Z:c62963b5-62b3-4801-b9e7-6a59f051c8ac" + "WESTUS:20200207T060545Z:5e22e666-a615-44f8-b210-7675cbda6731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -104,38 +107,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:25:36 GMT" + "Content-Length": [ + "2156" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg993?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzk5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg3393?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzMzOTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3e852214-fbdc-488b-b012-96ab47cf1e91" + "686276aa-1b00-40c5-8938-eddb4d41a96a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -149,6 +149,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:05:44 GMT" + ], "Pragma": [ "no-cache" ], @@ -156,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "d94aade3-d00c-41c5-83cd-19569db88da5" + "ae062626-450c-45e0-947e-f03213ce14d0" ], "x-ms-correlation-request-id": [ - "d94aade3-d00c-41c5-83cd-19569db88da5" + "ae062626-450c-45e0-947e-f03213ce14d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082537Z:d94aade3-d00c-41c5-83cd-19569db88da5" + "WESTUS:20200207T060545Z:ae062626-450c-45e0-947e-f03213ce14d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -170,11 +173,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:25:36 GMT" - ], "Content-Length": [ - "180" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,26 +183,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993\",\r\n \"name\": \"sdktestrg993\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393\",\r\n \"name\": \"sdktestrg3393\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n }\r\n }\r\n ],\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "51b8ba5a-db4b-4452-bd52-ab98088c0110" + "0ee6fa3c-91fc-460b-abee-c0ffb03772f9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -215,45 +215,45 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:05:48 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzS98=\"" + "\"AAAAAAABqWQ=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1db2628-a7e5-4e7e-857c-4660641db972", - "ffee4a55-3310-4bef-926f-1559e2e7b998" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "259aa093-90d0-49c3-b564-5901527c528a", + "5a27312d-e629-465c-a110-dab3ab17c105" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "0b71e6fe-b792-4f97-9d6c-0fef9be55754" + "5c92068e-ddd4-4416-816d-bdb8ff2b8f3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082539Z:0b71e6fe-b792-4f97-9d6c-0fef9be55754" + "WESTUS:20200207T060549Z:5c92068e-ddd4-4416-816d-bdb8ff2b8f3e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:25:39 GMT" - ], "Content-Length": [ - "1304" + "1331" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,1195 +262,1195 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521\",\r\n \"name\": \"sdktestapim7521\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzS98=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T08:25:38.5086594Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491\",\r\n \"name\": \"sdktestapim8491\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqWQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-07T06:05:47.8413301Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:06:48 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff1972a4-ce5a-4661-b7e6-24a16dfbb0f0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c3d9f4d5-bbc8-4b5d-8049-8586a9c48bb9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "436a2b62-09db-4d03-baae-4b7846c63dd3" + "aeb54497-efb4-4943-a6c3-7fc4c0819d06" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082639Z:436a2b62-09db-4d03-baae-4b7846c63dd3" + "WESTUS:20200207T060649Z:aeb54497-efb4-4943-a6c3-7fc4c0819d06" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:26:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:07:49 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b71208fb-6e61-4877-94a5-f48103d53bff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1b47d60c-b09d-43e4-973e-00b0b8322e5c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "29868e31-5ec2-42d0-929a-b6527200ec14" + "554f9bc8-7d3d-4347-9f38-5881e9a15a65" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082739Z:29868e31-5ec2-42d0-929a-b6527200ec14" + "WESTUS:20200207T060749Z:554f9bc8-7d3d-4347-9f38-5881e9a15a65" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:27:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:08:50 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3279702c-5de4-4eec-a3ab-abb5d0ae1267" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "37c9c156-29aa-416f-861c-e1b069712c19" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "bf56763d-1a73-4b2a-80c3-17ba4f6fd260" + "93b2ed8f-14f7-42ce-979f-27bd789f480a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082840Z:bf56763d-1a73-4b2a-80c3-17ba4f6fd260" + "WESTUS:20200207T060850Z:93b2ed8f-14f7-42ce-979f-27bd789f480a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:28:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:09:49 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f32ddde2-b816-40ca-af82-2d079678610f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b682c102-7870-4242-a160-270727432569" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "78a73bb2-9374-47d9-9974-cb6577c66ae0" + "b53397e8-7d5c-496e-8dcb-3d91d3f1c489" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T082940Z:78a73bb2-9374-47d9-9974-cb6577c66ae0" + "WESTUS:20200207T060950Z:b53397e8-7d5c-496e-8dcb-3d91d3f1c489" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:29:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:10:50 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d23edbf6-c211-48d6-85b4-0af7c248b01f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "160269dd-e8b5-4fef-9856-084b6e562467" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "a6dea9ea-522b-4b60-b92a-5dfde56bb932" + "4ea11b5b-2910-4a82-ae9e-bd5f2bbf1f53" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083040Z:a6dea9ea-522b-4b60-b92a-5dfde56bb932" + "WESTUS:20200207T061050Z:4ea11b5b-2910-4a82-ae9e-bd5f2bbf1f53" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:30:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:11:50 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ab6f721-09f8-4fb8-8502-7048ec952a60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7bb952f9-a63a-48ab-9f77-d51f0a6f8745" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "9f6287f7-05bf-43a1-a62f-bdc98fb017fb" + "b880d668-8e46-4e7f-96d1-b2b36d3acfe4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083141Z:9f6287f7-05bf-43a1-a62f-bdc98fb017fb" + "WESTUS:20200207T061151Z:b880d668-8e46-4e7f-96d1-b2b36d3acfe4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:31:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:12:50 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad33f12e-5c63-416e-811d-09a68c868062" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "82f3c2cb-3e9d-4ee3-be13-f5537cf5aa94" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "c7ead615-66d8-4c7c-bfb0-0ee9bc245707" + "4a3678d7-706c-4042-89e0-f156a6d229e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083241Z:c7ead615-66d8-4c7c-bfb0-0ee9bc245707" + "WESTUS:20200207T061251Z:4a3678d7-706c-4042-89e0-f156a6d229e8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:32:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:13:51 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ad5b057-b81c-44cb-aa6f-b20ec14f72e5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2156b4db-4b62-4068-8464-eea3fa1f9887" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "277a2857-70a8-4cb7-932e-725495cf9bb4" + "5c1c758e-1eae-44ec-b77c-59f654fbc994" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083341Z:277a2857-70a8-4cb7-932e-725495cf9bb4" + "WESTUS:20200207T061351Z:5c1c758e-1eae-44ec-b77c-59f654fbc994" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:33:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:14:51 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4a68089-f717-48d8-879f-14b64dab0b20" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d5d5ab55-0c6b-4ead-bb35-6dc30c77ac51" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "18fa7161-2e4e-4eb6-86f0-d99eb1d09920" + "cbe5d2c0-11ed-4f5c-b129-820847363483" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083442Z:18fa7161-2e4e-4eb6-86f0-d99eb1d09920" + "WESTUS:20200207T061452Z:cbe5d2c0-11ed-4f5c-b129-820847363483" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:34:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:15:52 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb7685a0-e0a1-4ce1-a9fc-cfdc9fb267f1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "10b3e7b1-e1bd-4dfb-b606-cdbb6cc15fb1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "12894888-bc03-46c6-b1a9-239daea6a60e" + "f2f012ed-9782-4079-948f-79d73b927b3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083542Z:12894888-bc03-46c6-b1a9-239daea6a60e" + "WESTUS:20200207T061552Z:f2f012ed-9782-4079-948f-79d73b927b3d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:35:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:16:51 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e3bd92a-dcaa-476d-81f8-f1482a5f3202" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "800d8e6f-02da-4718-a137-931fdce34ae2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "2267e8d6-385c-467e-b3fa-b7f286295db0" + "72a93be5-cbba-4924-96fc-cfe0fd28b523" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083643Z:2267e8d6-385c-467e-b3fa-b7f286295db0" + "WESTUS:20200207T061652Z:72a93be5-cbba-4924-96fc-cfe0fd28b523" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:36:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:17:52 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7db44346-1197-40a7-a58b-b90a8515e21f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "93dbad65-3c40-4030-8a42-ce578e41d369" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "fd010185-dd5b-41e1-b807-a3b224480953" + "4194e258-f910-43e2-a8b7-77b314cdada9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083743Z:fd010185-dd5b-41e1-b807-a3b224480953" + "WESTUS:20200207T061753Z:4194e258-f910-43e2-a8b7-77b314cdada9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:37:43 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:18:52 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1968b00-008e-4300-98e0-6cb8faea4d24" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c8850e35-2483-4577-b07a-ae3e7f4e6311" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "318720fa-152e-4557-9a9d-b2f74191f5a1" + "f07fd5fa-a321-4ccf-8e83-34b6e20208ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083844Z:318720fa-152e-4557-9a9d-b2f74191f5a1" + "WESTUS:20200207T061853Z:f07fd5fa-a321-4ccf-8e83-34b6e20208ef" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:38:43 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:19:53 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfc1f88c-bd59-451a-bf64-6f15784ec82c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "08e13377-8cd1-4f39-b6af-da3327a39be3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-correlation-request-id": [ - "d4015b4d-7d45-4d6a-b5c8-a07011c5f9db" + "909b0e97-7bb0-48fb-b212-00b112b56c88" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T083944Z:d4015b4d-7d45-4d6a-b5c8-a07011c5f9db" + "WESTUS:20200207T061953Z:909b0e97-7bb0-48fb-b212-00b112b56c88" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:39:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:20:53 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d8d5edb-b337-4504-8fdc-71613292fe80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "72d6bf1d-2974-41c3-9f5c-8468bd84a84f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "bca9134a-4c2f-476a-b47b-42de1571a468" + "af97711b-5f3b-4d91-9d0d-6d3c1d925e6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084044Z:bca9134a-4c2f-476a-b47b-42de1571a468" + "WESTUS:20200207T062054Z:af97711b-5f3b-4d91-9d0d-6d3c1d925e6b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:40:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:21:54 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2821311e-0513-40e1-b58d-2cc67eb4356e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "147e5ac5-87b9-43d8-8b17-130e326f228c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11997" ], "x-ms-correlation-request-id": [ - "1ea09b92-d77f-48ad-8cea-8a1844b4b163" + "61c6096a-2728-4078-a278-9887ea8cd975" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084145Z:1ea09b92-d77f-48ad-8cea-8a1844b4b163" + "WESTUS:20200207T062154Z:61c6096a-2728-4078-a278-9887ea8cd975" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:41:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:22:54 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97cf17ef-480b-4776-b2da-bf0d4d8c137e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "89cc7b52-5883-4196-a3b7-535aec981660" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11996" ], "x-ms-correlation-request-id": [ - "b8785e61-b61e-41d7-b75c-090e97c6cf05" + "35d93ade-be27-40b3-8405-0ff27432aced" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084245Z:b8785e61-b61e-41d7-b75c-090e97c6cf05" + "WESTUS:20200207T062254Z:35d93ade-be27-40b3-8405-0ff27432aced" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:42:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:23:54 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87be4f79-627b-4b95-9352-49bdb041d36a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a931c8de-741d-48b8-9851-c940943b41a6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11995" ], "x-ms-correlation-request-id": [ - "05a38b84-3064-4c73-9d13-3347e3d15a3c" + "8896c758-943c-4f92-84ef-562063fadc0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084345Z:05a38b84-3064-4c73-9d13-3347e3d15a3c" + "WESTUS:20200207T062354Z:8896c758-943c-4f92-84ef-562063fadc0a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:43:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:24:54 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9824d73-297d-4a08-baf1-a9256c17f670" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bbba4198-59d9-4cc8-b9e4-f2e50d14edb6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11997" ], "x-ms-correlation-request-id": [ - "dbceb787-e098-4c7f-bdba-c76e61b69652" + "9809f5f4-70b3-4ffd-8a74-60c30bec1a1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084446Z:dbceb787-e098-4c7f-bdba-c76e61b69652" + "WESTUS:20200207T062455Z:9809f5f4-70b3-4ffd-8a74-60c30bec1a1e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:44:45 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9BY3RfYWMwYjAwYg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlCWTNSZllXTXdZakF3WWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:25:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27b39268-df48-49f4-910c-3ed41f862ab7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6b8edb5b-8a42-4b53-a571-9b25fd3703ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-correlation-request-id": [ - "7d6d5722-aec6-4415-b357-3a18d94e5a92" + "946cb342-2485-4228-8386-7341bb51cd00" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084546Z:7d6d5722-aec6-4415-b357-3a18d94e5a92" + "WESTUS:20200207T062555Z:946cb342-2485-4228-8386-7341bb51cd00" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:45:46 GMT" - ], "Content-Length": [ - "2292" + "2362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1459,67 +1459,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521\",\r\n \"name\": \"sdktestapim7521\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzTM0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T08:25:38.5086594Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7521.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7521-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7521.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7521.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7521.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim7521.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.254.72\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"52.138.197.222\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7521-northeurope-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491\",\r\n \"name\": \"sdktestapim8491\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqXU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T06:05:47.8413301Z\",\r\n \"gatewayUrl\": \"https://sdktestapim8491.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim8491-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim8491.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim8491.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim8491.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim8491.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim8491.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.251.122\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"168.63.74.63\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://sdktestapim8491-northeurope-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab4a512c-5409-46bd-8401-1ccb83ddcc55" + "dad21c80-2dcd-45c1-b6f9-0c282d0af458" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:25:55 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9UZXJtXzg0ODM4ZDVj?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "909a751e-10d6-4cbd-8a12-50c6ca4ac9d2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3b2f8b64-a1ad-4b79-bdfd-5855e55ed7b6" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "094b326e-ea91-4043-bf08-08fe028b5918" + "1f4a50dd-5887-4ef6-9606-ff850f4c13ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084547Z:094b326e-ea91-4043-bf08-08fe028b5918" + "WESTUS:20200207T062556Z:1f4a50dd-5887-4ef6-9606-ff850f4c13ec" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:45:46 GMT" - ], "Content-Length": [ - "2091" + "2161" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1528,227 +1528,227 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521\",\r\n \"name\": \"sdktestapim7521\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzTNI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T08:25:38.5086594Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7521.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7521-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7521.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7521.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7521.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"104.43.254.72\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"52.138.197.222\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7521-northeurope-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491\",\r\n \"name\": \"sdktestapim8491\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqXY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2020-02-07T06:05:47.8413301Z\",\r\n \"gatewayUrl\": \"https://sdktestapim8491.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim8491-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim8491.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim8491.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim8491.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim8491.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"23.99.251.122\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"168.63.74.63\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://sdktestapim8491-northeurope-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgxUmxjbTFmT0RJeU1qa3lNbU09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9UZXJtXzg0ODM4ZDVj?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlVWlhKdFh6ZzBPRE00WkRWaj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:26:55 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9UZXJtXzg0ODM4ZDVj?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddeb5be7-ff42-4ad3-a935-9cb507399c1c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "80056c59-8b51-45c9-9a2a-d686fcdcea8c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-correlation-request-id": [ - "aecd6956-8fcf-4537-a6f4-84a12e5e62c7" + "a406b251-70dd-4b3a-bec4-2465c9bf74c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084647Z:aecd6956-8fcf-4537-a6f4-84a12e5e62c7" + "WESTUS:20200207T062656Z:a406b251-70dd-4b3a-bec4-2465c9bf74c9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:46:46 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgxUmxjbTFmT0RJeU1qa3lNbU09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9UZXJtXzg0ODM4ZDVj?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlVWlhKdFh6ZzBPRE00WkRWaj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:27:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b73f6105-3597-4799-a2ea-c8acddf2f3e2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f581f2fe-d144-4643-9fcb-c80ebaa7adf1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-correlation-request-id": [ - "fdd6b841-2c93-4c9f-8fdb-c41cb23f871a" + "eee7ab3e-1d1d-4457-93b1-9f875eeaacff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084747Z:fdd6b841-2c93-4c9f-8fdb-c41cb23f871a" + "WESTUS:20200207T062757Z:eee7ab3e-1d1d-4457-93b1-9f875eeaacff" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:47:46 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgxUmxjbTFmT0RJeU1qa3lNbU09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltODQ5MV9UZXJtXzg0ODM4ZDVj?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1JoY0dsdE9EUTVNVjlVWlhKdFh6ZzBPRE00WkRWaj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:27:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "014b1457-6021-487c-b8b7-544f0cb81181" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f8954575-54a5-43e1-8d0a-af39bfb6cb38" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11997" ], "x-ms-correlation-request-id": [ - "eb512328-bac5-4701-9104-5c3faa05e898" + "6ca695b8-7016-4be8-95b7-743abde9be8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084747Z:eb512328-bac5-4701-9104-5c3faa05e898" + "WESTUS:20200207T062757Z:6ca695b8-7016-4be8-95b7-743abde9be8d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:47:47 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg3393/providers/Microsoft.ApiManagement/service/sdktestapim8491?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzMzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW04NDkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3815c81e-a465-40f9-b28a-febb869dc217" + "49e1d7e2-3179-4878-9699-bdf9f1d686d5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 06:27:56 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11996" ], "x-ms-request-id": [ - "04d8996c-c587-4a2d-a38c-d04da4458b9b" + "41e160ec-b8f6-4cb3-920d-da4068034e22" ], "x-ms-correlation-request-id": [ - "04d8996c-c587-4a2d-a38c-d04da4458b9b" + "41e160ec-b8f6-4cb3-920d-da4068034e22" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T084747Z:04d8996c-c587-4a2d-a38c-d04da4458b9b" + "WESTUS:20200207T062757Z:41e160ec-b8f6-4cb3-920d-da4068034e22" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 08:47:47 GMT" - ], "Content-Length": [ "115" ], @@ -1759,14 +1759,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim7521\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim8491\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim7521", - "sdktestrg993" + "sdktestapim8491", + "sdktestrg3393" ] }, "Variables": { @@ -1774,8 +1774,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim7521", + "ServiceName": "sdktestapim8491", "Location": "Central US", - "ResourceGroup": "sdktestrg993" + "ResourceGroup": "sdktestrg3393" } } \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/InstallIntermediateCertificatesTest.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/InstallIntermediateCertificatesTest.json index eea18fa14b7f..b1999408554e 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/InstallIntermediateCertificatesTest.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/InstallIntermediateCertificatesTest.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b28485b-ae7c-4be2-9a46-af1491a16950" + "a1081e3e-e045-4b03-8a5d-f2a7f6821078" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,20 +23,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:05:24 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "48eb704e-3faf-45f0-ae6e-b3db2dea07a0" + "9fc95dd0-0ca4-47fc-8c6a-0e449b258ab2" ], "x-ms-correlation-request-id": [ - "48eb704e-3faf-45f0-ae6e-b3db2dea07a0" + "9fc95dd0-0ca4-47fc-8c6a-0e449b258ab2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T050802Z:48eb704e-3faf-45f0-ae6e-b3db2dea07a0" + "WESTUS:20200207T020524Z:9fc95dd0-0ca4-47fc-8c6a-0e449b258ab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:08:01 GMT" + "Content-Length": [ + "2156" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg1297?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzEyOTc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg6522?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzY1MjI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "42596f97-ac76-4c9d-be19-1491dfe4d060" + "3c983d24-63b7-4cc8-90fd-b5533fbb4bb9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,20 +89,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:05:26 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "bd541734-c506-4f1b-b41f-2adae66e6ae3" + "c37e2a52-d683-4c77-a7e3-31ab54c4f7f7" ], "x-ms-correlation-request-id": [ - "bd541734-c506-4f1b-b41f-2adae66e6ae3" + "c37e2a52-d683-4c77-a7e3-31ab54c4f7f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T050803Z:bd541734-c506-4f1b-b41f-2adae66e6ae3" + "WESTUS:20200207T020526Z:c37e2a52-d683-4c77-a7e3-31ab54c4f7f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,9 +113,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:08:02 GMT" - ], "Content-Length": [ "182" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297\",\r\n \"name\": \"sdktestrg1297\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522\",\r\n \"name\": \"sdktestrg6522\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"storeName\": \"CertificateAuthority\"\r\n }\r\n ],\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fd0724f1-ae31-4def-b09b-7c3cca139829" + "e5e6c728-4a9f-48f1-87b8-b35f7df75f38" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,45 +155,45 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:05:29 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzP8Q=\"" + "\"AAAAAAABqD4=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42edc804-ae9d-42aa-bdb1-66fe313e45a4", - "f81fa506-c295-4caa-9354-6d2c0ac7ba6c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5340a670-c5c6-4ae2-bd7d-7fc4ed70341d", + "84b8c4d4-26d4-45f0-b803-3da75f25f8d8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "18bab3b6-bcba-4ee7-84fe-07d1e7c12294" + "3e842fd2-87d2-4a40-a4c8-4f0d32ac8c19" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T050804Z:18bab3b6-bcba-4ee7-84fe-07d1e7c12294" + "WESTUS:20200207T020530Z:3e842fd2-87d2-4a40-a4c8-4f0d32ac8c19" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:08:04 GMT" - ], "Content-Length": [ - "1356" + "1380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,1615 +202,2155 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065\",\r\n \"name\": \"sdktestapim5065\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzP8Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T05:08:04.3228808Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249\",\r\n \"name\": \"sdktestapim249\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqD4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-07T02:05:28.5849822Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:06:30 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b9a087b-c6b7-41f1-a693-ddbffe7b56c3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "746f74d5-8014-4574-8246-1314e130925c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "c3a1f495-e1ba-42f2-b265-a6d87ed7f62f" + "22a9fe8c-da84-45da-87c9-96780b4b4cb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T050905Z:c3a1f495-e1ba-42f2-b265-a6d87ed7f62f" + "WESTUS:20200207T020631Z:22a9fe8c-da84-45da-87c9-96780b4b4cb7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:09:04 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:07:31 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dcb0f2fc-7f64-4c0d-a6e5-0fd02eff1dbb" + "fc348e01-7d01-4f28-bfbc-ecf86df8b188" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11989" ], "x-ms-correlation-request-id": [ - "0895711a-5574-4c8c-b30e-d0c6d7eb842b" + "2dca2e6f-3c2b-412a-9222-28217841786e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051005Z:0895711a-5574-4c8c-b30e-d0c6d7eb842b" + "WESTUS:20200207T020731Z:2dca2e6f-3c2b-412a-9222-28217841786e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:10:04 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:08:30 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b877aa1-5f35-4590-904e-798ca5aecac1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f2254733-8a72-43f9-b5e0-e97ca5aec12e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "ed23e9f7-3a6b-40ff-ae1f-ddd0f3f66b81" + "229d6833-5bb4-4fc8-9923-13497f2721a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051105Z:ed23e9f7-3a6b-40ff-ae1f-ddd0f3f66b81" + "WESTUS:20200207T020831Z:229d6833-5bb4-4fc8-9923-13497f2721a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:11:05 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:09:31 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c6a3b7a-1aeb-4ff1-afb1-ba39365af195" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c0004e0c-1cf6-48fa-b55a-b8377a296be5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "42188d79-771c-464c-8fb3-42baebd7a99f" + "a714711c-8cd9-4c65-907d-02b298836a1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051206Z:42188d79-771c-464c-8fb3-42baebd7a99f" + "WESTUS:20200207T020932Z:a714711c-8cd9-4c65-907d-02b298836a1b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:12:05 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:10:32 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e62561c9-2ae4-4811-8513-d5cecec1948a" + "3064f18f-7ab9-46fb-b260-c3e72459fa96" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11997" ], "x-ms-correlation-request-id": [ - "8cf9c3fa-2d70-48b9-a54f-ff09b280963b" + "91e41b1c-1483-4da9-84b6-b3e4aa231b13" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051306Z:8cf9c3fa-2d70-48b9-a54f-ff09b280963b" + "WESTUS:20200207T021032Z:91e41b1c-1483-4da9-84b6-b3e4aa231b13" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:13:05 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:11:33 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "898e78d8-0600-4dea-8c68-09754bb58ebd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "91107032-4cf6-43f1-a3ec-489704bb8dea" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "3f91491e-d2da-4393-98b6-f48d69716ddc" + "8da34abf-1d68-4f7f-ae0d-9e1d405833b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051406Z:3f91491e-d2da-4393-98b6-f48d69716ddc" + "WESTUS:20200207T021133Z:8da34abf-1d68-4f7f-ae0d-9e1d405833b4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:14:06 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:12:33 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "babb9b72-8f01-4f84-b811-ac640dd004ea" + "34ac2bb7-df1f-4d14-a721-47b630128e76" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "c0acbdf8-bc59-42c9-9eb8-d1803109338d" + "f17f2c4a-d4bc-4b19-9f23-43cba2cd052a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051506Z:c0acbdf8-bc59-42c9-9eb8-d1803109338d" + "WESTUS:20200207T021234Z:f17f2c4a-d4bc-4b19-9f23-43cba2cd052a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:15:05 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:13:33 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81f68a4e-63c1-4e87-b951-19eb8d13352a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8dd8b5d5-cf48-40d6-b51b-578bf4a63b99" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-correlation-request-id": [ - "e390fd65-5a5a-4cd4-8a0c-d5a7e6f3b07c" + "3bc742c2-e926-4865-a3bb-16cbfedb50db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051607Z:e390fd65-5a5a-4cd4-8a0c-d5a7e6f3b07c" + "WESTUS:20200207T021334Z:3bc742c2-e926-4865-a3bb-16cbfedb50db" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:16:06 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:14:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91509d15-25db-4315-85c2-cd96a8788725" + "0f22a762-4f36-49d5-92f6-31711eea2ad3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11988" ], "x-ms-correlation-request-id": [ - "730c747c-bcf9-4c0f-9e29-31f694f9e30c" + "82b17978-2ee1-46d4-9b35-c01ea95f4ac8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051707Z:730c747c-bcf9-4c0f-9e29-31f694f9e30c" + "WESTUS:20200207T021434Z:82b17978-2ee1-46d4-9b35-c01ea95f4ac8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:17:06 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:15:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fff78720-bcba-4c1a-915a-c03320571c43" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b46d3f65-6252-4f67-8c0f-91e9fb7569e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "a382856e-ae73-4138-a1e3-92efa4741e7b" + "a2ad363e-6794-4c42-b189-3787864dde7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051807Z:a382856e-ae73-4138-a1e3-92efa4741e7b" + "WESTUS:20200207T021535Z:a2ad363e-6794-4c42-b189-3787864dde7b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:18:07 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:16:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2fe7cbf-3751-413b-a54d-b97a6e121478" + "dc1db642-f3e0-463e-b6a7-a4d0c42b71a5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "1ba1c806-e457-4e77-9c9f-48fd3b94bdef" + "91015774-186d-45bb-9999-d5e95cf2f17e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T051907Z:1ba1c806-e457-4e77-9c9f-48fd3b94bdef" + "WESTUS:20200207T021635Z:91015774-186d-45bb-9999-d5e95cf2f17e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:19:07 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:17:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13a320f6-c9cf-47cc-a0af-37bd46c2f7df" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ebaafb70-15c3-4a4d-9619-96e94e1183f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "6ebe2eaa-839a-41ab-a5f9-dbfc14588892" + "33eda064-6b59-4bf0-905e-a31d66495517" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052008Z:6ebe2eaa-839a-41ab-a5f9-dbfc14588892" + "WESTUS:20200207T021735Z:33eda064-6b59-4bf0-905e-a31d66495517" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:20:08 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:18:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62f0812b-0658-4edb-b66c-d36d743f54bf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6bc362d8-b52f-48f5-84d8-cf8f8bb9e970" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "7f8a7ed3-55c0-4695-863c-527e080c35fb" + "71fe08de-bafe-416b-8202-23d65046d39a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052108Z:7f8a7ed3-55c0-4695-863c-527e080c35fb" + "WESTUS:20200207T021836Z:71fe08de-bafe-416b-8202-23d65046d39a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:21:08 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:19:36 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46db35bf-914a-419a-b8df-2dda997582f5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1e22f078-dcce-4a7d-9d26-ff0fd4a2038c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-correlation-request-id": [ - "464ffaf9-d6e9-4c69-af02-02d95b4cf43b" + "a0d73abc-2066-4693-8cb8-bcabce282dc7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052209Z:464ffaf9-d6e9-4c69-af02-02d95b4cf43b" + "WESTUS:20200207T021936Z:a0d73abc-2066-4693-8cb8-bcabce282dc7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:22:08 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:20:36 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b711a2d-4752-4642-9157-d255d4340ad9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0d514f7a-0561-4104-96e9-9c8ba0e64c41" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-correlation-request-id": [ - "ab2a473b-de15-4aae-a43d-b5918d894457" + "9f208fee-3dd5-4b01-89f7-e2a75c63c36c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052309Z:ab2a473b-de15-4aae-a43d-b5918d894457" + "WESTUS:20200207T022036Z:9f208fee-3dd5-4b01-89f7-e2a75c63c36c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:23:09 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:21:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd336ce9-87d5-4a49-a79c-7a42ac486e2c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "11cc7f9c-ac7a-429a-9071-86d09ca866a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022137Z:11cc7f9c-ac7a-429a-9071-86d09ca866a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:22:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bdf23a48-70bb-4ab2-a4c0-87f2948b6ccd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0c1062ec-a744-415f-94d6-1a7677afe2c7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022237Z:0c1062ec-a744-415f-94d6-1a7677afe2c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:23:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9e124b8-4172-4c4f-b00d-bea46e37c818" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "1104d6a9-2f75-4fe9-9d4b-b92756cf4209" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022337Z:1104d6a9-2f75-4fe9-9d4b-b92756cf4209" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:24:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4a667ae0-63d3-43c0-bb84-cd5b3248b09b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "7c6dc46e-cacf-429e-ac8e-f5632b2c6f3f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022438Z:7c6dc46e-cacf-429e-ac8e-f5632b2c6f3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:25:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1719d9c6-d152-4db8-b6d7-13a7de165366" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e47b093c-c5ab-47e9-bdd6-f1e3931d6419" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022538Z:e47b093c-c5ab-47e9-bdd6-f1e3931d6419" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:26:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "70562148-71fd-4840-9bc5-33dcb26efa3d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7bac132a-4acb-440a-a6a9-9fa68426dd05" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022639Z:7bac132a-4acb-440a-a6a9-9fa68426dd05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:27:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6919c8f-158f-4707-a5c6-9827b2604c5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "da30f616-bc5a-4041-b152-9fdf381952c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022739Z:da30f616-bc5a-4041-b152-9fdf381952c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:28:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4f3433ea-e35b-4a07-aacf-4309e5157c24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2bbd83fe-367b-4145-9769-41d29a8f2e13" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022839Z:2bbd83fe-367b-4145-9769-41d29a8f2e13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 02:29:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c06de992-67b7-4528-908c-866bafa33b39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "237d8c57-f4e2-4f58-849b-82807340bc1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T022940Z:237d8c57-f4e2-4f58-849b-82807340bc1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ "0" + ], + "Expires": [ + "-1" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:30:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24e4043b-a72a-4418-a423-86e6862040ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8f55e04b-7b01-4092-a1cb-f3851dc595ce" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11997" ], "x-ms-correlation-request-id": [ - "b3bd6579-4ff3-4333-a9ea-4f136a800790" + "0ffaa42b-87fc-4d4d-a857-699b73af6129" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052409Z:b3bd6579-4ff3-4333-a9ea-4f136a800790" + "WESTUS:20200207T023040Z:0ffaa42b-87fc-4d4d-a857-699b73af6129" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:24:08 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:31:39 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f16c51f-3cb3-4277-b25e-ffa3c4acfcc3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "effc0589-5d62-4236-a031-6e35a0d0d826" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11996" ], "x-ms-correlation-request-id": [ - "4f4e2cca-5926-4d03-b498-6fae7b383929" + "af0fae13-574a-438f-ae34-9fc7af077759" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052509Z:4f4e2cca-5926-4d03-b498-6fae7b383929" + "WESTUS:20200207T023140Z:af0fae13-574a-438f-ae34-9fc7af077759" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:25:09 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:32:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5491118f-91c3-4634-a946-feea8bb4cc60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1528da2b-8d22-411c-8a52-1b41502e5b5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11995" ], "x-ms-correlation-request-id": [ - "1d65995c-8bba-4e99-a882-9d59f59debaa" + "939ea503-a5c5-4378-9780-3229b4f01fcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052610Z:1d65995c-8bba-4e99-a882-9d59f59debaa" + "WESTUS:20200207T023240Z:939ea503-a5c5-4378-9780-3229b4f01fcf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:26:09 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:33:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04b00dfb-afb8-4e02-bfc0-f7594d53f677" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7791f7b9-3989-418f-aa72-3c67f9cbbd06" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11994" ], "x-ms-correlation-request-id": [ - "efbed4e6-7e68-4a4f-8fa9-2f8da2944aef" + "4f481b44-3d7f-457f-b137-f52620bc1a76" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052710Z:efbed4e6-7e68-4a4f-8fa9-2f8da2944aef" + "WESTUS:20200207T023341Z:4f481b44-3d7f-457f-b137-f52620bc1a76" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:27:10 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:34:40 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7ad213a-cc77-402d-a3b8-f4e35bb90a5a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "525b5085-cccc-490f-a53b-ec378f167dbc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-correlation-request-id": [ - "ed5288e5-10d2-467c-8457-691bc04f626c" + "ad5b81a7-0c0d-45ba-82e8-05b44d5865c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052810Z:ed5288e5-10d2-467c-8457-691bc04f626c" + "WESTUS:20200207T023441Z:ad5b81a7-0c0d-45ba-82e8-05b44d5865c0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:28:10 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:35:41 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b173c16f-9540-4855-b934-f9d71e009029" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "982d088f-123c-481b-b2cd-bb07defd832c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11996" ], "x-ms-correlation-request-id": [ - "38c745eb-cb9e-456f-ad20-2d94d682498e" + "b6a0ad88-5e61-4849-bd27-51b9f6876693" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T052911Z:38c745eb-cb9e-456f-ad20-2d94d682498e" + "WESTUS:20200207T023542Z:b6a0ad88-5e61-4849-bd27-51b9f6876693" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:29:10 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:36:42 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6e271b4-f817-468c-aac4-64b428bd393c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "44c54147-7f60-4af3-8469-d6ab9e889add" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11995" ], "x-ms-correlation-request-id": [ - "5121661b-0c2e-4a69-9ad8-ea8884a126b0" + "ec171cec-b2e3-45c7-aaf6-9d4f0556b70f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053011Z:5121661b-0c2e-4a69-9ad8-ea8884a126b0" + "WESTUS:20200207T023642Z:ec171cec-b2e3-45c7-aaf6-9d4f0556b70f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:30:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:37:42 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17591edb-374b-4cab-ba2d-6264462ff617" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9fb1e760-ecc7-4d73-88b7-1752de982251" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-correlation-request-id": [ - "a0f809e9-1cfe-44b9-8052-8b4a73b40eb5" + "9346629e-a0e3-46ba-a6cd-5b3fb051da9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053111Z:a0f809e9-1cfe-44b9-8052-8b4a73b40eb5" + "WESTUS:20200207T023742Z:9346629e-a0e3-46ba-a6cd-5b3fb051da9d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:31:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:38:42 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b8450c8-b0f7-405f-bd2e-c659b92d1329" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "505292e5-5b58-4da1-9f57-f8f44ccf3c14" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-correlation-request-id": [ - "10f7313a-aecb-47dd-99fe-4eecd244a672" + "56216e1b-dd45-438a-b97d-53f89ab74204" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053212Z:10f7313a-aecb-47dd-99fe-4eecd244a672" + "WESTUS:20200207T023843Z:56216e1b-dd45-438a-b97d-53f89ab74204" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:32:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:39:43 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd93ec9a-3417-44de-9df9-858ff50e51dc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1cfcc48c-4ac0-478d-9699-82c181b5f060" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11993" ], "x-ms-correlation-request-id": [ - "088f1bb0-0b37-4d50-85a9-d302eda5448c" + "876326df-8e11-418d-a673-4eb8289d9813" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053312Z:088f1bb0-0b37-4d50-85a9-d302eda5448c" + "WESTUS:20200207T023943Z:876326df-8e11-418d-a673-4eb8289d9813" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:33:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:40:43 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "400966df-1bb0-44c2-8301-40c65637521a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "edf1b310-f5f0-4da2-aa5a-c98ec3d6c1d2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-correlation-request-id": [ - "c0cac897-18f2-4367-918e-c8b1cf0c99ed" + "bc516daf-ede3-4955-9d5e-734b9abbadd6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053412Z:c0cac897-18f2-4367-918e-c8b1cf0c99ed" + "WESTUS:20200207T024043Z:bc516daf-ede3-4955-9d5e-734b9abbadd6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:34:12 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X0FjdF9iNmJiODRkMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgwRmpkRjlpTm1KaU9EUmtNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:41:44 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7028b2e3-08a8-41e4-a287-60d970718d28" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a71f1a3c-d471-4f3c-a0fc-e634cf6e77e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-correlation-request-id": [ - "5fa9a3da-c274-4da5-946b-19e120857925" + "0c8c5b43-c8da-4d53-b37c-26ca99f68cd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053513Z:5fa9a3da-c274-4da5-946b-19e120857925" + "WESTUS:20200207T024144Z:0c8c5b43-c8da-4d53-b37c-26ca99f68cd1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:35:12 GMT" - ], "Content-Length": [ - "2270" + "2333" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1819,67 +2359,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065\",\r\n \"name\": \"sdktestapim5065\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzQXQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T05:08:04.3228808Z\",\r\n \"gatewayUrl\": \"https://sdktestapim5065.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim5065-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim5065.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim5065.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim5065.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim5065.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.113.228.6\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249\",\r\n \"name\": \"sdktestapim249\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqGs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T02:05:28.5849822Z\",\r\n \"gatewayUrl\": \"https://sdktestapim249.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim249-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim249.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim249.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim249.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim249.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim249.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.113.221.98\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a12da6f0-314e-4a44-a5ba-5585ff68f1dd" + "8ea43df4-98b5-40e2-b0c6-374a6fd36381" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:41:44 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X1Rlcm1fNDYyYTc0MDY=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afd89fb8-0b00-41ae-9933-e13f736c0906" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3eaf0c15-94b0-4495-912a-0855e029cc17" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "7d5fcb52-ef36-47bf-9daf-0545a522a45c" + "02abbcf9-2c91-4c84-863a-72e97c74fbd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053514Z:7d5fcb52-ef36-47bf-9daf-0545a522a45c" + "WESTUS:20200207T024144Z:02abbcf9-2c91-4c84-863a-72e97c74fbd1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:35:13 GMT" - ], "Content-Length": [ - "2069" + "2133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1888,229 +2428,229 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065\",\r\n \"name\": \"sdktestapim5065\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzQXU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T05:08:04.3228808Z\",\r\n \"gatewayUrl\": \"https://sdktestapim5065.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim5065-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim5065.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim5065.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim5065.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.113.228.6\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249\",\r\n \"name\": \"sdktestapim249\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABqGw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2020-02-07T02:05:28.5849822Z\",\r\n \"gatewayUrl\": \"https://sdktestapim249.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim249-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim249.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestapim249.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim249.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim249.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.113.221.98\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMVJsY20xZk0ySTNZbUUxWWpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X1Rlcm1fNDYyYTc0MDY=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgxUmxjbTFmTkRZeVlUYzBNRFk9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:42:45 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X1Rlcm1fNDYyYTc0MDY=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16021a3f-67d1-43dc-849c-992f2e1cb957" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f9bfc1e3-2519-4e58-946d-fb04cb5b5ca1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11998" ], "x-ms-correlation-request-id": [ - "527e5b86-f5ed-49fb-aec3-b7c8ce6308a7" + "74f3741d-3100-43a1-9f19-2a453a437c42" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053614Z:527e5b86-f5ed-49fb-aec3-b7c8ce6308a7" + "WESTUS:20200207T024245Z:74f3741d-3100-43a1-9f19-2a453a437c42" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:36:14 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMVJsY20xZk0ySTNZbUUxWWpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X1Rlcm1fNDYyYTc0MDY=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgxUmxjbTFmTkRZeVlUYzBNRFk9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:43:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a12042dd-7e1e-43bc-9684-dc47be3ff2c9" + "6bf5f0ff-fbf6-49a1-a244-907d7a63e19a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11999" ], "x-ms-correlation-request-id": [ - "27631b31-24f8-4020-8bfa-ebb2c5718491" + "d53b4f23-88eb-4385-a2c6-33d9741ee84b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053714Z:27631b31-24f8-4020-8bfa-ebb2c5718491" + "WESTUS:20200207T024345Z:d53b4f23-88eb-4385-a2c6-33d9741ee84b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:14 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMVJsY20xZk0ySTNZbUUxWWpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249/operationresults/Y2VudHJhbHVzOnNka3Rlc3RhcGltMjQ5X1Rlcm1fNDYyYTc0MDY=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbk5rYTNSbGMzUmhjR2x0TWpRNVgxUmxjbTFmTkRZeVlUYzBNRFk9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:43:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48aa23af-8ea8-4f41-8b95-415476026144" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9f36aae9-50e3-46ce-a3d2-65758538d573" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-correlation-request-id": [ - "9a96a1c6-e842-4dcc-90c5-4ccbeb1b7f60" + "ff2e9742-6083-434a-9a1a-e2fc657d6af1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053715Z:9a96a1c6-e842-4dcc-90c5-4ccbeb1b7f60" + "WESTUS:20200207T024345Z:ff2e9742-6083-434a-9a1a-e2fc657d6af1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:14 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6522/providers/Microsoft.ApiManagement/service/sdktestapim249?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNDk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c4ff47a-2466-41d2-865f-c97466ce7946" + "b2e1cc81-d741-4c9b-9a93-39ae2ee53f4d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:43:45 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11997" ], "x-ms-request-id": [ - "c61aff9a-b835-4fc8-a8b6-cbe56094445d" + "0ed1fc5d-2327-4c69-aef5-7b074abe5228" ], "x-ms-correlation-request-id": [ - "c61aff9a-b835-4fc8-a8b6-cbe56094445d" + "0ed1fc5d-2327-4c69-aef5-7b074abe5228" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T053715Z:c61aff9a-b835-4fc8-a8b6-cbe56094445d" + "WESTUS:20200207T024346Z:0ed1fc5d-2327-4c69-aef5-7b074abe5228" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 05:37:14 GMT" - ], "Content-Length": [ - "115" + "114" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2119,14 +2659,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim5065\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim249\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim5065", - "sdktestrg1297" + "sdktestapim249", + "sdktestrg6522" ] }, "Variables": { @@ -2134,8 +2674,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim5065", + "ServiceName": "sdktestapim249", "Location": "Central US", - "ResourceGroup": "sdktestrg1297" + "ResourceGroup": "sdktestrg6522" } } \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/SetupMsiTests.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/SetupMsiTests.json index 1c79c8e5b286..febc3dfa35fa 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/SetupMsiTests.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/SetupMsiTests.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45c5006b-3731-4624-951d-5966c9c50e3d" + "855cb603-99ff-420a-876e-f8ff74edba0f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,6 +23,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:43:49 GMT" + ], "Pragma": [ "no-cache" ], @@ -30,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "bc480247-14d1-4b2c-b610-8742b0c46279" + "abab3257-d6df-47ba-9518-4186edadfb10" ], "x-ms-correlation-request-id": [ - "bc480247-14d1-4b2c-b610-8742b0c46279" + "abab3257-d6df-47ba-9518-4186edadfb10" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T162925Z:bc480247-14d1-4b2c-b610-8742b0c46279" + "WESTUS:20200207T024349Z:abab3257-d6df-47ba-9518-4186edadfb10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,38 +47,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 16:29:25 GMT" + "Content-Length": [ + "2156" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg39?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzM5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg4910?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzQ5MTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f03d9d1c-4079-426c-a016-7563787e692c" + "a54647f4-fe32-4b2a-9884-5d2ba8acb627" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,6 +89,9 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:43:50 GMT" + ], "Pragma": [ "no-cache" ], @@ -96,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "f05a3e22-b4a2-42d0-816d-ea3f47f40b0d" + "8bc2c07d-b330-47b7-9cb2-9d4777f1b9ee" ], "x-ms-correlation-request-id": [ - "f05a3e22-b4a2-42d0-816d-ea3f47f40b0d" + "8bc2c07d-b330-47b7-9cb2-9d4777f1b9ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T162926Z:f05a3e22-b4a2-42d0-816d-ea3f47f40b0d" + "WESTUS:20200207T024350Z:8bc2c07d-b330-47b7-9cb2-9d4777f1b9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,11 +113,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 16:29:26 GMT" - ], "Content-Length": [ - "178" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39\",\r\n \"name\": \"sdktestrg39\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4910\",\r\n \"name\": \"sdktestrg4910\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3RhcGltOTY1Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4910/providers/Microsoft.ApiManagement/service/sdktestapim7183?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03MTgzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ed39dda6-e813-4b5b-9fa8-797a7001c700" + "94413d3a-309e-420a-b982-572253f2b24e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,47 +155,45 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:43:54 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAWiE=\"" + "\"AAAAAAAD1cQ=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652/operationresults/c2RrdGVzdGFwaW05NjUyX0FjdF8yZjM1OWQyOA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4910/providers/Microsoft.ApiManagement/service/sdktestapim7183/operationresults/d2VzdHVzOnNka3Rlc3RhcGltNzE4M19BY3RfNjVhYjUyZTU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d15ec21c-5934-40b2-9dbb-37682f407757", - "fdd31933-ad82-4a32-8a8d-69a69841d40c", - "8359d239-6765-4703-b67f-28a005844f21" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "4ba3c2b7-75c9-4d58-8772-94f2bd03d853", + "518c8486-351e-42c2-b991-38cb5d89c03a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "d58fb530-eae2-427f-86dd-bc669c41f2d0" + "92898eb9-6071-410a-ac71-b579757f0fbc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T162930Z:d58fb530-eae2-427f-86dd-bc669c41f2d0" + "WESTUS:20200207T024355Z:92898eb9-6071-410a-ac71-b579757f0fbc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 16:29:30 GMT" - ], "Content-Length": [ - "1285" + "1213" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,57 +202,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652\",\r\n \"name\": \"sdktestapim9652\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWiE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T16:29:29.9711098Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"dfb9a757-df69-4966-a8d0-711a9cd8ffb4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4910/providers/Microsoft.ApiManagement/service/sdktestapim7183\",\r\n \"name\": \"sdktestapim7183\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAD1cQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-07T02:43:53.5755483Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652/operationresults/c2RrdGVzdGFwaW05NjUyX0FjdF8yZjM1OWQyOA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3RhcGltOTY1Mi9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMDVOalV5WDBGamRGOHlaak0xT1dReU9BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4910/providers/Microsoft.ApiManagement/service/sdktestapim7183/operationresults/d2VzdHVzOnNka3Rlc3RhcGltNzE4M19BY3RfNjVhYjUyZTU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03MTgzL29wZXJhdGlvbnJlc3VsdHMvZDJWemRIVnpPbk5rYTNSbGMzUmhjR2x0TnpFNE0xOUJZM1JmTmpWaFlqVXlaVFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:44:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67d69e04-fbef-4f5c-a8e1-1ce4d93959cd", - "a9baf1e7-d5c4-45cc-8c78-9d7db9b96b11" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "8e87120e-b69a-474b-8d0a-406d185044f4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "cddba7c5-d22e-4b98-af1e-8e6c23b94c84" + "98e84014-ee51-4e91-bfeb-29f1756285ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T163030Z:cddba7c5-d22e-4b98-af1e-8e6c23b94c84" + "WESTUS:20200207T024455Z:98e84014-ee51-4e91-bfeb-29f1756285ca" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 16:30:29 GMT" - ], "Content-Length": [ - "1339" + "1834" ], "Content-Type": [ "application/json; charset=utf-8" @@ -263,61 +259,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652\",\r\n \"name\": \"sdktestapim9652\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWiU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-11T16:29:29.9711098Z\",\r\n \"gatewayUrl\": \"https://sdktestapim9652.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim9652.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"dfb9a757-df69-4966-a8d0-711a9cd8ffb4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4910/providers/Microsoft.ApiManagement/service/sdktestapim7183\",\r\n \"name\": \"sdktestapim7183\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAD1cw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T02:43:53.5755483Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7183.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim7183.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"aa671a20-53e2-4a3c-a9fc-420bf05f8f01\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3RhcGltOTY1Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4910/providers/Microsoft.ApiManagement/service/sdktestapim7183?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03MTgzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "950837bd-b53b-4e5e-80cf-6e27ab4c218b" + "bdf2dec5-590e-42ff-bf5c-ef67e55e5e6f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33c91595-b8fc-43e6-a0c9-5e4317283853", - "0fdf2765-3ad4-4568-a40d-5b1e87f99941" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "cb9d6f72-ef12-431e-b7bc-87cad863b1c3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "c1b1cc9f-ee6b-4207-af64-547168711170" + "3f4973f1-9333-4916-abf6-c9d4785d5551" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T163032Z:c1b1cc9f-ee6b-4207-af64-547168711170" + "WESTUS:20200207T024518Z:3f4973f1-9333-4916-abf6-c9d4785d5551" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 16:30:31 GMT" - ], "Expires": [ "-1" ] @@ -326,28 +320,31 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3RhcGltOTY1Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4910/providers/Microsoft.ApiManagement/service/sdktestapim7183?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03MTgzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc6b49c4-5e4a-410a-a2de-5b8f0bd61928" + "9ce21f27-0020-45fd-9ff7-da0f43ee101c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 02:45:18 GMT" + ], "Pragma": [ "no-cache" ], @@ -355,13 +352,13 @@ "gateway" ], "x-ms-request-id": [ - "6f768357-a88a-4e8b-9772-7bc60d5553a4" + "a500cb59-750c-4b06-a011-5958e8a0628e" ], "x-ms-correlation-request-id": [ - "6f768357-a88a-4e8b-9772-7bc60d5553a4" + "a500cb59-750c-4b06-a011-5958e8a0628e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T163032Z:6f768357-a88a-4e8b-9772-7bc60d5553a4" + "WESTUS:20200207T024518Z:a500cb59-750c-4b06-a011-5958e8a0628e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,27 +366,24 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 16:30:31 GMT" + "Content-Length": [ + "164" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "162" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim9652' under resource group 'sdktestrg39' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim7183' under resource group 'sdktestrg4910' was not found.\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim9652", - "sdktestrg39" + "sdktestapim7183", + "sdktestrg4910" ] }, "Variables": { @@ -397,8 +391,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim9652", + "ServiceName": "sdktestapim7183", "Location": "Central US", - "ResourceGroup": "sdktestrg39" + "ResourceGroup": "sdktestrg4910" } } \ No newline at end of file diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiOperationTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiOperationTests/CreateListUpdateDelete.json index 9ec0597db8b9..4c95ab3d0e07 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiOperationTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiOperationTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c8fafc3c-732c-4492-a1a9-00a187d076cb" + "c20940f6-2936-4df8-9f60-d54b3c08c66e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:05 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce39cc61-2ae5-40b9-9933-26b49d3e4ecc", - "02e0fe57-f648-4182-a0e4-6692b877002a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8432ad45-89a3-44ab-9f20-ff3a86571840", + "4af8104d-c57d-4921-b6f6-ec5738e69d41" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "53afe71c-9691-4b14-bf32-71a34dfaf88c" + "b86f40be-67a7-4cfe-8e7d-1618f3a0187f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020434Z:53afe71c-9691-4b14-bf32-71a34dfaf88c" + "WESTUS:20200207T005305Z:b86f40be-67a7-4cfe-8e7d-1618f3a0187f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:33 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbe91d86-499e-42b5-a9e7-829a57d726db" + "36c1f59c-5299-4f92-afbf-203ed8033197" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:05 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ec6952d-d9b5-4990-b402-b337279dd001" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "940fbdec-c6dc-4264-9e38-a4c41231ef3a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "caec697d-ce1f-4506-bcbe-dbb215e16feb" + "23ded2e4-acd6-48bd-bc83-8abbba9edf41" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020435Z:caec697d-ce1f-4506-bcbe-dbb215e16feb" + "WESTUS:20200207T005305Z:23ded2e4-acd6-48bd-bc83-8abbba9edf41" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:34 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38fa077d-9b92-4d64-b1d9-f42843c1e3c7" + "484b1dfc-d256-4f11-9792-076923d6a1a4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bda16992-b874-4c2d-8e5a-743a59aaa6b8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a8a04ff9-7545-49b4-9ab3-fd7709aa53cd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "ac8090fc-b431-47ba-9e0a-a121d3e634b6" + "b68876f5-2e8e-4d8b-ae41-442a9e999a81" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020435Z:ac8090fc-b431-47ba-9e0a-a121d3e634b6" + "WESTUS:20200207T005306Z:b68876f5-2e8e-4d8b-ae41-442a9e999a81" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:34 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "947f16c2-77d4-477f-9a4c-d04e446081d2" + "414f9296-6f1c-4702-b055-999d43608ed5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4da8d8b5-d828-4460-9fcc-75d4df41eb80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4872915c-d12c-4fdc-96d0-5590088a4ec6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "003bb529-d49f-4a0f-a6d8-ed4a63ce5c4a" + "872dfdaa-d02e-4f8f-968d-41fb91663fee" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020435Z:003bb529-d49f-4a0f-a6d8-ed4a63ce5c4a" + "WESTUS:20200207T005306Z:872dfdaa-d02e-4f8f-968d-41fb91663fee" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:34 GMT" - ], "Content-Length": [ - "7418" + "7477" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n\\t\\t}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?$top=3&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JHRvcD0zJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations?$top=3&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz8kdG9wPTMmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6be2849-95f8-41a5-a65f-74b9aa34f455" + "8f84b325-8df3-4ff0-8a36-8c2457a5b7e0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "122a3b74-67ec-41fa-a4dd-3aae4d067c20" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8b62f9a9-f8eb-4225-afc5-4d1e1be5dfd5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "4e2428b3-7953-4d32-a702-40e946ab9b47" + "f9693f28-ca16-494e-b710-49ddd3d18889" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020435Z:4e2428b3-7953-4d32-a702-40e946ab9b47" + "WESTUS:20200207T005306Z:f9693f28-ca16-494e-b710-49ddd3d18889" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:34 GMT" - ], "Content-Length": [ - "3430" + "3473" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,61 +325,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n\\t\\t}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?%24top=3&api-version=2019-01-01&%24skip=3\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations?%24top=3&api-version=2019-01-01&%24skip=3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?%24top=3&api-version=2019-01-01&%24skip=3", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JTI0dG9wPTMmYXBpLXZlcnNpb249MjAxOS0wMS0wMSYlMjRza2lwPTM=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations?%24top=3&api-version=2019-01-01&%24skip=3", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz8lMjR0b3A9MyZhcGktdmVyc2lvbj0yMDE5LTAxLTAxJiUyNHNraXA9Mw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4aa487a9-b91e-4ae6-8f87-2801d8d0b331" + "3aeadaa3-94b0-474f-b338-ef666a47d06d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd4ce48c-c310-46eb-a821-c16e8259fa01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a7910d49-b4de-4e43-8e7d-8e7a200136ce" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "53559342-938c-426d-8563-b24bca65f4bc" + "c5bc293d-d3c5-4411-9abf-997a53fa53f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020435Z:53559342-938c-426d-8563-b24bca65f4bc" + "WESTUS:20200207T005306Z:c5bc293d-d3c5-4411-9abf-997a53fa53f7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:34 GMT" - ], "Content-Length": [ - "4273" + "4312" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,64 +388,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-header-only?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-header-only?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1oZWFkZXItb25seT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69501efc-a102-4c80-99f9-0c202a40d523" + "06b36cba-1622-4dad-9274-643ca05f2cdd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:06 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAE8w=\"" + "\"AAAAAAAACPo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76487fdd-91ca-4542-9858-8aefdcd41bd4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a6426dc6-754a-452d-8780-9a8eb4e5e49e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "5ab11369-bf94-4000-bc06-a0ce98464d61" + "56a47351-423d-4d90-a485-f6835cac6c3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020435Z:5ab11369-bf94-4000-bc06-a0ce98464d61" + "WESTUS:20200207T005307Z:56a47351-423d-4d90-a485-f6835cac6c3f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:34 GMT" - ], "Content-Length": [ - "898" + "906" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,70 +454,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"operationDescription3417\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4602\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName5158\",\r\n \"description\": \"newOperationRequestParamDescr2300\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue7922\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue7922\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7017\",\r\n \"description\": \"newOperationRequestHeaderParamDescr9927\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType6063\",\r\n \"sample\": \"newOperationRequestRepresentationSample6121\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription1018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType660\",\r\n \"sample\": \"newOperationResponseRepresentationSample5908\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operationName9706\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"operationDescription37\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription9958\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName1789\",\r\n \"description\": \"newOperationRequestParamDescr9897\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue1958\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue1958\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName6373\",\r\n \"description\": \"newOperationRequestHeaderParamDescr499\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7943\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7943\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType4463\",\r\n \"sample\": \"newOperationRequestRepresentationSample9732\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription9338\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType2044\",\r\n \"sample\": \"newOperationResponseRepresentationSample6278\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operationName8904\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a13b723f-4226-463c-b402-629fa52ac0de" + "0765708f-9ff2-48fc-964d-bae7a21d4c3f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1744" + "1742" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcD0=\"" + "\"AAAAAAAACVs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1958b17-f2cc-4592-9add-91ca6e562848" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4f7ac077-4bca-4358-aeb8-aa59854546c3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "4b17278f-f361-4a05-ad5b-8fbb34c6e442" + "e723641b-7baa-4c92-a2d5-be563810fa0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020436Z:4b17278f-f361-4a05-ad5b-8fbb34c6e442" + "WESTUS:20200207T005310Z:e723641b-7baa-4c92-a2d5-be563810fa0b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:36 GMT" - ], "Content-Length": [ - "2113" + "2119" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,64 +526,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid4995\",\r\n \"properties\": {\r\n \"displayName\": \"operationName9706\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription3417\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4602\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName5158\",\r\n \"description\": \"newOperationRequestParamDescr2300\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue7922\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue7922\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7017\",\r\n \"description\": \"newOperationRequestHeaderParamDescr9927\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType6063\",\r\n \"sample\": \"newOperationRequestRepresentationSample6121\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription1018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType660\",\r\n \"sample\": \"newOperationResponseRepresentationSample5908\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid1240\",\r\n \"properties\": {\r\n \"displayName\": \"operationName8904\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription37\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription9958\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName1789\",\r\n \"description\": \"newOperationRequestParamDescr9897\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue1958\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue1958\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName6373\",\r\n \"description\": \"newOperationRequestHeaderParamDescr499\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7943\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7943\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType4463\",\r\n \"sample\": \"newOperationRequestRepresentationSample9732\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription9338\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType2044\",\r\n \"sample\": \"newOperationResponseRepresentationSample6278\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed5fee8e-d174-4873-8667-ffb07f8a9d7e" + "ee0504f0-461f-4a2b-b924-004ca491025a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcD0=\"" + "\"AAAAAAAACVs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a271e42-e971-4115-9aaf-c7c1ec250d31" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4c29e0e4-67df-4e7a-b3e0-c10eaf50fded" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "e763c353-f16a-4622-8e2a-a3432fc97bc0" + "03ceae64-96ad-435b-993f-647ae35bd249" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020436Z:e763c353-f16a-4622-8e2a-a3432fc97bc0" + "WESTUS:20200207T005310Z:03ceae64-96ad-435b-993f-647ae35bd249" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:36 GMT" - ], "Content-Length": [ - "2113" + "2119" ], "Content-Type": [ "application/json; charset=utf-8" @@ -592,64 +592,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid4995\",\r\n \"properties\": {\r\n \"displayName\": \"operationName9706\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription3417\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4602\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName5158\",\r\n \"description\": \"newOperationRequestParamDescr2300\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue7922\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue7922\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7017\",\r\n \"description\": \"newOperationRequestHeaderParamDescr9927\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType6063\",\r\n \"sample\": \"newOperationRequestRepresentationSample6121\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription1018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType660\",\r\n \"sample\": \"newOperationResponseRepresentationSample5908\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid1240\",\r\n \"properties\": {\r\n \"displayName\": \"operationName8904\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription37\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription9958\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName1789\",\r\n \"description\": \"newOperationRequestParamDescr9897\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue1958\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue1958\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName6373\",\r\n \"description\": \"newOperationRequestHeaderParamDescr499\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7943\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7943\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType4463\",\r\n \"sample\": \"newOperationRequestRepresentationSample9732\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription9338\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType2044\",\r\n \"sample\": \"newOperationResponseRepresentationSample6278\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a21015d-4884-4d8b-af4f-55d0ece48194" + "774ffbc6-8889-4b48-a7dc-eb2ec82987b1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:11 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcD8=\"" + "\"AAAAAAAACV0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a721795e-f57b-452b-8214-6f1c39bad0ae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "75cf23c4-0484-4995-aa73-6cc3a0eaab21" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "ed63c2c3-2677-4354-b1d8-33d3ab9f5e09" + "926cd1b4-8f0d-4109-aa95-da0ca213bbfa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020437Z:ed63c2c3-2677-4354-b1d8-33d3ab9f5e09" + "WESTUS:20200207T005312Z:926cd1b4-8f0d-4109-aa95-da0ca213bbfa" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:37 GMT" - ], "Content-Length": [ - "2108" + "2115" ], "Content-Type": [ "application/json; charset=utf-8" @@ -658,59 +658,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid4995\",\r\n \"properties\": {\r\n \"displayName\": \"patchedName2782\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"patchedDescription5067\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4602\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName5158\",\r\n \"description\": \"newOperationRequestParamDescr2300\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue7922\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue7922\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7017\",\r\n \"description\": \"newOperationRequestHeaderParamDescr9927\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType6063\",\r\n \"sample\": \"newOperationRequestRepresentationSample6121\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription1018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType660\",\r\n \"sample\": \"newOperationResponseRepresentationSample5908\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid1240\",\r\n \"properties\": {\r\n \"displayName\": \"patchedName307\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"patchedDescription9093\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription9958\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName1789\",\r\n \"description\": \"newOperationRequestParamDescr9897\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue1958\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue1958\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName6373\",\r\n \"description\": \"newOperationRequestHeaderParamDescr499\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7943\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7943\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType4463\",\r\n \"sample\": \"newOperationRequestRepresentationSample9732\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription9338\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType2044\",\r\n \"sample\": \"newOperationResponseRepresentationSample6278\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "434ba030-da88-4450-b528-7cf941fd72da" + "2387968a-c04b-45ce-a859-2462482a750a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4047eab9-e38c-4176-92c8-87a3da4f12cc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1c1f2dc9-78ce-4806-ae51-87f52242a785" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "cce95155-e4e0-4d09-b092-571c7f3c0081" + "7872d7a9-c49c-4864-ac05-bbb1f67449b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020437Z:cce95155-e4e0-4d09-b092-571c7f3c0081" + "WESTUS:20200207T005313Z:7872d7a9-c49c-4864-ac05-bbb1f67449b8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:37 GMT" - ], "Content-Length": [ "85" ], @@ -725,58 +725,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11a70a07-9e38-4a11-83ba-02b72b34add0" + "92bf417d-867d-4320-88be-5578be3a19a9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcD0=\"" + "\"AAAAAAAACVs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cabb3a52-8c65-46ff-909b-162b553a84bb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8662cd93-ae9b-4c11-9d72-a54436a82594" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "6e70677e-74f4-4de6-ac57-148403c4945d" + "9686f8dd-f578-4655-9389-5b56ca6688a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020436Z:6e70677e-74f4-4de6-ac57-148403c4945d" + "WESTUS:20200207T005310Z:9686f8dd-f578-4655-9389-5b56ca6688a4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:36 GMT" - ], "Content-Length": [ "0" ], @@ -788,58 +788,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5f3e509-c8bd-4d12-b11a-4dac16f8d933" + "053b0cdd-349c-4a71-90ef-6d12d7337fca" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:11 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcD8=\"" + "\"AAAAAAAACV0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e0e2bf9-be12-4fa3-b2de-2c924c9ace83" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b62bda9d-5b2a-4f76-bccb-f3f4f3ff222f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "40e5ee04-31c6-4c2d-872a-6d93f2d14c78" + "8a8c5700-7cd6-4975-913e-cd1169c20e17" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020437Z:40e5ee04-31c6-4c2d-872a-6d93f2d14c78" + "WESTUS:20200207T005312Z:8a8c5700-7cd6-4975-913e-cd1169c20e17" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:37 GMT" - ], "Content-Length": [ "0" ], @@ -851,64 +851,64 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription5067\",\r\n \"displayName\": \"patchedName2782\",\r\n \"method\": \"HEAD\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription9093\",\r\n \"displayName\": \"patchedName307\",\r\n \"method\": \"HEAD\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6afab436-1fb9-4a88-84c8-59a06692444f" + "b19ae09d-2bfd-405f-8a3d-8568b9a59074" ], "If-Match": [ - "\"AAAAAAAAcD0=\"" + "\"AAAAAAAACVs=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "135" + "134" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa535f61-6380-49e6-88d2-ad21cb63f6a4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f0bed0b7-2f33-4114-b3ae-a3585a349b3e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "20f84c13-83b8-4909-9361-3593e478e3c0" + "956f72a9-58b4-4a03-abc3-5fe7f4e3e28b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020437Z:20f84c13-83b8-4909-9361-3593e478e3c0" + "WESTUS:20200207T005311Z:956f72a9-58b4-4a03-abc3-5fe7f4e3e28b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:37 GMT" - ], "Expires": [ "-1" ] @@ -917,121 +917,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba27b951-74b8-46c2-8470-5b323bffcd2e" + "01fa7894-1322-49cc-a86a-42a011fd2b7f" ], "If-Match": [ - "\"AAAAAAAAcD8=\"" + "\"AAAAAAAACV0=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32ea5048-1afc-404e-b5dc-3bafbad3c60c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b9963b0e-d7eb-4292-84af-f414ee27b705" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "54a347f4-3c17-4edd-b56e-2c0287d85f09" + "cd00fb2c-8e6b-4d52-838c-3835df8d59b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020437Z:54a347f4-3c17-4edd-b56e-2c0287d85f09" + "WESTUS:20200207T005313Z:cd00fb2c-8e6b-4d52-838c-3835df8d59b7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:37 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/operationid1240?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9vcGVyYXRpb25pZDEyNDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "742e6c2e-e358-48b8-8e3e-70a97d77a8ec" + "b8583356-2cd1-4917-bcb6-0d07b3178af7" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8446ff95-a4b3-4d26-83e8-17db6341fcc1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cdb3493e-d1d5-4640-bb27-a71a40a2a610" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "da3d938d-c0ca-4d02-b8a2-115fd1b92e2d" + "f57b2371-058b-4a51-aa88-429e2b432002" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020437Z:da3d938d-c0ca-4d02-b8a2-115fd1b92e2d" + "WESTUS:20200207T005313Z:f57b2371-058b-4a51-aa88-429e2b432002" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:37 GMT" - ], "Expires": [ "-1" ] @@ -1042,23 +1042,23 @@ ], "Names": { "CreateListUpdateDelete": [ - "operationid4995", - "operationName9706", - "operationDescription3417", - "operationRequestDescription4602", - "newOperationRequestHeaderParmName7017", - "newOperationRequestHeaderParamDescr9927", - "newOperationRequestHeaderParamDefaultValue7175", - "newOperationRequestParmName5158", - "newOperationRequestParamDescr2300", - "newOperationRequestParamDefaultValue7922", - "newOperationRequestRepresentationContentType6063", - "newOperationRequestRepresentationSample6121", - "newOperationResponseDescription1018", - "newOperationResponseRepresentationContentType660", - "newOperationResponseRepresentationSample5908", - "patchedName2782", - "patchedDescription5067" + "operationid1240", + "operationName8904", + "operationDescription37", + "operationRequestDescription9958", + "newOperationRequestHeaderParmName6373", + "newOperationRequestHeaderParamDescr499", + "newOperationRequestHeaderParamDefaultValue7943", + "newOperationRequestParmName1789", + "newOperationRequestParamDescr9897", + "newOperationRequestParamDefaultValue1958", + "newOperationRequestRepresentationContentType4463", + "newOperationRequestRepresentationSample9732", + "newOperationResponseDescription9338", + "newOperationResponseRepresentationContentType2044", + "newOperationResponseRepresentationSample6278", + "patchedName307", + "patchedDescription9093" ] }, "Variables": { @@ -1066,7 +1066,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiProductTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiProductTests/CreateListUpdateDelete.json index 968a9c325689..6aec3abb14f9 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiProductTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiProductTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f08a96b7-f99d-422a-a65b-644579397b1b" + "fea8bd64-5cb8-498c-9c2e-a96e82e40669" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:19 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ff2fbad-3092-477b-8bdf-2a1688451f58", - "62128f2f-4779-4476-9363-c4c8f80767cd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5a3c5b7b-c504-47cd-bd33-cfbf275df743", + "25c201ec-e59f-46f1-b641-77dec51cd931" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "19047921-9996-4b9a-a71f-0aa8b7db2e81" + "2aabf9e8-4d9a-485c-ace6-7b2e8f112c62" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020504Z:19047921-9996-4b9a-a71f-0aa8b7db2e81" + "WESTUS:20200207T005220Z:2aabf9e8-4d9a-485c-ace6-7b2e8f112c62" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:04 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5328ed6d-dc0d-4a6c-83c4-bbb64ab855cc" + "06b56530-c7c6-450a-8f37-aad1a93a6d00" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:19 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70b14d45-346d-4ee8-aee6-c94cbdeecb9b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ed1454d9-d74e-4592-b05c-387bd606fbcc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "848162ab-53dc-4e80-bf95-86c391143550" + "e892875a-abc3-4785-8cb5-f3baf9a9e481" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020504Z:848162ab-53dc-4e80-bf95-86c391143550" + "WESTUS:20200207T005220Z:e892875a-abc3-4785-8cb5-f3baf9a9e481" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:04 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64122f76-5053-4a99-950b-2da9474457ee" + "3e45a327-e15f-4e5f-8f4d-cbe60723c4b5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:19 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4832358a-49e4-4835-88c0-77b047d7523b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "faf9f159-429f-429d-9ee9-5f0b00efa266" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "2c943c85-0651-425a-bf78-c15650f231a1" + "0c84a074-6e76-48eb-b4c9-f7c3d2f42804" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020504Z:2c943c85-0651-425a-bf78-c15650f231a1" + "WESTUS:20200207T005220Z:0c84a074-6e76-48eb-b4c9-f7c3d2f42804" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:04 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcHJvZHVjdHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cb43109-9b9e-490d-ab12-38e2026f7683" + "c043ee53-a9b3-40e1-b24e-9e19f8483eae" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3a71d05-e179-43f1-a822-cf7761fc83ae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1074f364-3446-4317-8722-7a67a6f7e61c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "6fdd4ef1-b576-4677-ad6a-c79b7d290d1d" + "03bbfb14-2e3a-4df7-ae62-445982dc1047" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020504Z:6fdd4ef1-b576-4677-ad6a-c79b7d290d1d" + "WESTUS:20200207T005221Z:03bbfb14-2e3a-4df7-ae62-445982dc1047" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:04 GMT" - ], "Content-Length": [ - "1319" + "1341" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcHJvZHVjdHM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9cede98-baa5-40eb-ac41-053b85cc4c2a" + "42ae3c04-4efe-4945-953c-f493ddf71ac7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6556c604-4d3f-4235-b91b-120e22b3b3a3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4b7da76c-376d-4ae6-ae1c-fb250de7d0d9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "5eaa323d-9263-48bc-b1e4-a94e2b0bf956" + "6330ce43-cfb8-41de-bbc0-0f891719f3db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020505Z:5eaa323d-9263-48bc-b1e4-a94e2b0bf956" + "WESTUS:20200207T005221Z:6330ce43-cfb8-41de-bbc0-0f891719f3db" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:04 GMT" - ], "Content-Length": [ - "927" + "949" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,61 +325,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?%24top=1&api-version=2019-01-01&%24skip=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDEmJTI0c2tpcD0x", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcHJvZHVjdHM/JTI0dG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMSYlMjRza2lwPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6df1c5af-11e8-48bc-aa1e-549b34503acd" + "1c3c6df8-c06b-4c33-9e42-4b223f45c49c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44b428fc-8493-4da7-97a9-1c552d1a0e5a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1bb459d5-cb42-403e-98c8-cd3a5809ab31" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "f16357f2-032e-41d6-8653-6aa632b12e9f" + "00c63160-7665-4db4-9395-ac74954c12f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020505Z:f16357f2-032e-41d6-8653-6aa632b12e9f" + "WESTUS:20200207T005221Z:00c63160-7665-4db4-9395-ac74954c12f4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:04 GMT" - ], "Content-Length": [ - "675" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,61 +388,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?$skip=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyRza2lwPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products?$skip=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcHJvZHVjdHM/JHNraXA9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6992af4f-1636-4744-adbb-bd01fe6af904" + "ecd3f370-ac0a-4f29-8823-2ae42b300c65" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d489abd-f2e7-4561-955a-5e239e10025a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "76d70ab4-8971-41b6-81b1-41222e0dd9ff" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "5fc42133-c5e7-4394-a0d5-bfef3044df48" + "9517a855-71ee-44a6-84d7-f6094baa2b3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020505Z:5fc42133-c5e7-4394-a0d5-bfef3044df48" + "WESTUS:20200207T005222Z:9517a855-71ee-44a6-84d7-f6094baa2b3e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:04 GMT" - ], "Content-Length": [ - "675" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -451,7 +451,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 } ], @@ -461,7 +461,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiRevisionTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiRevisionTests/CreateListUpdateDelete.json index e094a6a106b7..eb2e92699696 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiRevisionTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiRevisionTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f5616c33-293b-474b-b355-36f996bc20fc" + "71ec4837-5320-4afb-aa51-3bc569f0ee9d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:33 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c2c0df5-3f21-4592-abc8-dbb85a94a282", - "7660aa2e-fc55-4227-aef5-8f648207f609" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "558f708a-d248-461a-987d-0aa35bba0dd6", + "13b9a8ff-5c82-4e28-91e7-458f973bf5d1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "aa5d67a0-7c1d-4413-b2b0-7cc266a8a433" + "ca395b43-5ce5-4a2f-956e-c99bdf010151" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000749Z:aa5d67a0-7c1d-4413-b2b0-7cc266a8a433" + "WESTUS:20200207T010033Z:ca395b43-5ce5-4a2f-956e-c99bdf010151" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:07:49 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe07c255-73d0-4f2c-85b9-5605657fbb6a" + "2178a222-5c20-4fb4-8584-a08d92286e94" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:34 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efb40620-d861-4e4c-be18-e449e4f05afc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7efc4aa7-42ac-4ebf-9ea6-e91a497eaabb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "b9559233-7068-442e-baf7-edfb86ba45ec" + "619e09ce-e1fc-4894-ab39-db3f176ad216" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000749Z:b9559233-7068-442e-baf7-edfb86ba45ec" + "WESTUS:20200207T010034Z:619e09ce-e1fc-4894-ab39-db3f176ad216" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:07:49 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9deb93a9-249d-409d-860e-dc8b055bfd3c" + "b0eaa14b-20a5-4d78-ae5b-1504558c6508" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,95 +168,95 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:34 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01&asyncId=5cafd6d6b59744156c3729c3&asyncCode=201" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?api-version=2019-01-01&asyncId=5e3cb6b22393691028e5c661&asyncCode=201" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55f076c0-cc7a-4d93-9d80-1afd35977ee7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "feb569bb-7fb8-4575-a1e8-10f8d96031a2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "4400bc89-c9b0-4886-a2a0-6820a55cf98c" + "cfc51ea5-2d5d-485f-9f6b-d54e92bfa72e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000750Z:4400bc89-c9b0-4886-a2a0-6820a55cf98c" + "WESTUS:20200207T010034Z:cfc51ea5-2d5d-485f-9f6b-d54e92bfa72e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:07:50 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01&asyncId=5cafd6d6b59744156c3729c3&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAxJmFzeW5jSWQ9NWNhZmQ2ZDZiNTk3NDQxNTZjMzcyOWMzJmFzeW5jQ29kZT0yMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?api-version=2019-01-01&asyncId=5e3cb6b22393691028e5c661&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTNjYjZiMjIzOTM2OTEwMjhlNWM2NjEmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfGg=\"" + "\"AAAAAAAACk8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52d59342-abb6-480d-9681-37a0f11f1f12" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "df457a4f-9c85-42cc-ad48-7a1afae08ec3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "f936e2b0-86a9-448b-a13f-881683502641" + "1fef9f36-a82d-4508-99ef-142787c86d45" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000821Z:f936e2b0-86a9-448b-a13f-881683502641" + "WESTUS:20200207T010104Z:1fef9f36-a82d-4508-99ef-142787c86d45" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:20 GMT" - ], "Content-Length": [ - "848" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,64 +265,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4713\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1901\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cffc87d4-ceb8-4d3c-ad16-fc139244777d" + "00dbff51-68ed-4207-ac52-2f58322686fb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfGg=\"" + "\"AAAAAAAACk8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bb96a29-e0db-4ff4-af9d-15ff315479f4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b19a13c2-d190-42c2-a9d2-28390b931c7b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "c0965e44-c5d9-4441-b36f-85f20a294679" + "05ec6d88-7e41-413d-8afa-9c0ba2ae7c2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000821Z:c0965e44-c5d9-4441-b36f-85f20a294679" + "WESTUS:20200207T010105Z:05ec6d88-7e41-413d-8afa-9c0ba2ae7c2f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:20 GMT" - ], "Content-Length": [ - "848" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,59 +331,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4713\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1901\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1b64920-9718-4193-bda1-cfd20b0b1545" + "6107e3fa-f1b2-4c83-a976-302a589bb6a5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:41 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60b576fc-2a81-489d-8bbd-9b72050b7e5b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "65ad8ebe-9cee-46dc-9806-b53c5bec3b4d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], "x-ms-correlation-request-id": [ - "9b896123-75ea-47c9-b44b-b57f0a8489d1" + "f2c88d22-0043-4c65-9b61-a482c41d8fda" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000856Z:9b896123-75ea-47c9-b44b-b57f0a8489d1" + "WESTUS:20200207T010142Z:f2c88d22-0043-4c65-9b61-a482c41d8fda" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:55 GMT" - ], "Content-Length": [ "79" ], @@ -398,57 +398,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "768f6eec-6e0c-4a3f-a2ef-f4cb9112e158" + "8917b555-9f69-4db2-8c71-b73ddb2f05d1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3810195-78c1-4f0d-acfd-d75393afbf5d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bc42ca9d-9812-4a23-ba5f-18907e86da10" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "7edab0cf-8373-4843-8883-e51a19044110" + "35fe554b-27fa-4c6f-87f7-26ebb0e75a02" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000821Z:7edab0cf-8373-4843-8883-e51a19044110" + "WESTUS:20200207T010105Z:35fe554b-27fa-4c6f-87f7-26ebb0e75a02" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:21 GMT" - ], "Content-Length": [ - "18959" + "19038" ], "Content-Type": [ "application/json; charset=utf-8" @@ -457,62 +457,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d60093d-4642-41f0-a1d0-b6b59a033183" + "9ddfd532-ef56-472d-9b67-0e29653bde3a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:05 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfGg=\"" + "\"AAAAAAAACk8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01937a7d-a5eb-48f8-a030-0877db40e1ea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1a8cd5af-c79c-44be-8c2e-8b408a036560" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "91035655-be81-4ce7-a748-08c0d78fe092" + "47a83c4d-883e-41f5-936c-7506db754c7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000821Z:91035655-be81-4ce7-a748-08c0d78fe092" + "WESTUS:20200207T010105Z:47a83c4d-883e-41f5-936c-7506db754c7e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:21 GMT" - ], "Content-Length": [ "0" ], @@ -524,58 +524,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e0f1a53-2072-4aed-a227-56ced4728b60" + "23f44f6b-5725-4e28-bfb9-2759d9f5f83c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:38 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfGg=\"" + "\"AAAAAAAACk8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "451ae027-6f1c-4878-b67f-49d36d4324d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "437665c3-9af4-4a1c-a23c-1c6d41fbfe0a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "c7ddf3a4-7af7-4444-a16d-0b3ec75a7904" + "947969f7-f9ab-4070-8163-52b684c34ddf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000854Z:c7ddf3a4-7af7-4444-a16d-0b3ec75a7904" + "WESTUS:20200207T010139Z:947969f7-f9ab-4070-8163-52b684c34ddf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:53 GMT" - ], "Content-Length": [ "0" ], @@ -587,66 +587,66 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": false,\r\n \"apiRevisionDescription\": \"Petstore second revision\",\r\n \"sourceApiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713\",\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": false,\r\n \"apiRevisionDescription\": \"Petstore second revision\",\r\n \"sourceApiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901\",\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "97060931-6260-42a9-aa97-38be33529f04" + "6bbca12f-597c-4bf3-8308-d8329ac397c9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "769" + "777" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:06 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfIU=\"" + "\"AAAAAAAACm0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d9de4b35-b736-4e74-8c34-bf5a8df7a4d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4db835ba-ad74-4f61-993d-edea2dfe3cac" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "715b5b53-d7af-4c93-9cfa-a9084eaa1b4c" + "2109b943-a02e-43d5-9d68-30bb4227d003" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000822Z:715b5b53-d7af-4c93-9cfa-a9084eaa1b4c" + "WESTUS:20200207T010106Z:2109b943-a02e-43d5-9d68-30bb4227d003" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:22 GMT" - ], "Content-Length": [ - "896" + "904" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,58 +655,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4713;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"Petstore second revision\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1901;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"Petstore second revision\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:36 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfIU=\"" + "\"AAAAAAAACm0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3de08b6c-7a54-49af-99da-50cc70b98bdc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8e0fbfc9-d4da-46a4-bfb1-f97833472ca8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "41c854f1-1036-434f-bfda-c03b51dcbd7f" + "78e2a141-1147-4806-a861-1ebae48f162a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000853Z:41c854f1-1036-434f-bfda-c03b51dcbd7f" + "WESTUS:20200207T010136Z:78e2a141-1147-4806-a861-1ebae48f162a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:52 GMT" - ], "Content-Length": [ - "896" + "904" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,70 +715,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4713;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"Petstore second revision\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1901;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"Petstore second revision\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2/operations/firstOpRev8365?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDIvb3BlcmF0aW9ucy9maXJzdE9wUmV2ODM2NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901%3Brev%3D2/operations/firstOpRev9764?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxJTNCcmV2JTNEMi9vcGVyYXRpb25zL2ZpcnN0T3BSZXY5NzY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet790\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet6032\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8807\",\r\n \"description\": \"description_azsmnet4590\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet4274\",\r\n \"description\": \"description_azsmnet2536\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet9453\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7685\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet6184\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet8235\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4425\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet4811\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"template_azsmnet9245\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet9688\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet8589\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8707\",\r\n \"description\": \"description_azsmnet4295\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet2339\",\r\n \"description\": \"description_azsmnet38\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet7938\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4539\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet2801\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet1611\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4363\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet8234\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"template_azsmnet2601\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c3e5fd8d-77d7-417e-8e69-acf9ef0d33d7" + "aabf3283-2c67-4616-b044-d2b49073dd00" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1528" + "1527" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:37 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfKM=\"" + "\"AAAAAAAACos=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "159ec03f-1811-493f-8360-2c3d3b5e3ff9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7cc0d878-ac01-4b20-bb18-c84b9b0ce505" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "e62a51fb-ab05-4afd-bfec-1ab9a78867ed" + "c4aab32d-1c6f-4905-a2d4-668de8da3e14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000853Z:e62a51fb-ab05-4afd-bfec-1ab9a78867ed" + "WESTUS:20200207T010137Z:c4aab32d-1c6f-4905-a2d4-668de8da3e14" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:53 GMT" - ], "Content-Length": [ - "1903" + "1910" ], "Content-Type": [ "application/json; charset=utf-8" @@ -787,61 +787,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/firstOpRev8365\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev8365\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet4811\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet9245\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet790\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet6032\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8807\",\r\n \"description\": \"description_azsmnet4590\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet4274\",\r\n \"description\": \"description_azsmnet2536\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet9453\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7685\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet6184\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet8235\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4425\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/firstOpRev9764\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev9764\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet8234\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet2601\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet9688\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet8589\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8707\",\r\n \"description\": \"description_azsmnet4295\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet2339\",\r\n \"description\": \"description_azsmnet38\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet7938\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4539\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet2801\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet1611\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4363\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2/operations?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901%3Brev%3D2/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxJTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e022cc23-964a-472d-b4f3-3b4193464eaa" + "44007bb9-26ff-419a-a41e-434ee3252fd8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "555ffa66-31c9-4049-8173-17e2c272b476" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ce0bf911-db0f-4460-a4fd-4da126adc98f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "91690fd4-a731-4f41-92af-08c185b377ad" + "7a17ac47-9305-4a0b-9522-931b5fbbeee9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000854Z:91690fd4-a731-4f41-92af-08c185b377ad" + "WESTUS:20200207T010137Z:7a17ac47-9305-4a0b-9522-931b5fbbeee9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:53 GMT" - ], "Content-Length": [ - "19122" + "19208" ], "Content-Type": [ "application/json; charset=utf-8" @@ -850,61 +850,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/firstOpRev8365\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev8365\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet4811\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet9245\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet790\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet6032\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8807\",\r\n \"description\": \"description_azsmnet4590\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet4274\",\r\n \"description\": \"description_azsmnet2536\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet9453\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7685\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet6184\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet8235\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4425\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/firstOpRev9764\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev9764\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet8234\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet2601\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet9688\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet8589\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8707\",\r\n \"description\": \"description_azsmnet4295\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet2339\",\r\n \"description\": \"description_azsmnet38\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet7938\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4539\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet2801\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet1611\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4363\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 9\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2/operations?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDIvb3BlcmF0aW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901%3Brev%3D2/operations?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxJTNCcmV2JTNEMi9vcGVyYXRpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc3ac336-18da-4bc4-acc0-46c5af285189" + "3f186cb3-1130-4862-886c-d2da9308e5f1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64e61848-f864-40e5-a3cf-79db03b60a42" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "dbccd014-6298-45dc-aab7-c524f895f002" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "03e45f1e-9cca-48f5-9176-064d0a62fe59" + "19d34c54-68c6-4f2e-9488-caced0c32ead" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000854Z:03e45f1e-9cca-48f5-9176-064d0a62fe59" + "WESTUS:20200207T010138Z:19d34c54-68c6-4f2e-9488-caced0c32ead" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:53 GMT" - ], "Content-Length": [ - "1994" + "2025" ], "Content-Type": [ "application/json; charset=utf-8" @@ -913,61 +913,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 9,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMztyZXY9Mi9vcGVyYXRpb25zPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDEmJTI0c2tpcD0x", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxO3Jldj0yL29wZXJhdGlvbnM/JTI0dG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMSYlMjRza2lwPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "506fbeda-0103-4c5d-a832-0016475247a5" + "2ee9b275-19c9-44bc-884c-1aa6df1b6f9f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c71cb9b-1c03-4df1-944d-47c6b16771f2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "40d63539-29a7-4770-9c4f-8f775c96144b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "00cbb063-e211-4c81-a59e-104bae38e6f7" + "0a32cf7f-e490-4b8f-a62c-69585928d0d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000854Z:00cbb063-e211-4c81-a59e-104bae38e6f7" + "WESTUS:20200207T010138Z:0a32cf7f-e490-4b8f-a62c-69585928d0d9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:53 GMT" - ], "Content-Length": [ - "1762" + "1793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -976,61 +976,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=2\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb6b22393691028e5c660\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 9,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/revisions?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZXZpc2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/revisions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e4fe80e-7152-40a8-816d-85890852caac" + "5890103d-bc1e-4444-bdf8-e734ee258f3c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e197d0c-6213-4ea9-8dc7-eb4005e4123e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "63c9fec5-ee81-48a5-a2b9-b992719d2f33" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "e733603b-202d-4973-99d7-770fec9615e8" + "df944f52-41f8-4f04-8e63-60919ab77ac4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000854Z:e733603b-202d-4973-99d7-770fec9615e8" + "WESTUS:20200207T010138Z:df944f52-41f8-4f04-8e63-60919ab77ac4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:53 GMT" - ], "Content-Length": [ - "508" + "505" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1039,62 +1039,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/apiid4713;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2019-04-12T00:08:21.713Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:21.807Z\",\r\n \"description\": \"Petstore second revision\",\r\n \"privateUrl\": \"/swaggerApi;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"apiId\": \"/apis/apiid4713;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2019-04-12T00:07:50.443Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:07:50.473Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerApi\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/apiid1901;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2020-02-07T01:01:05.62Z\",\r\n \"updatedDateTime\": \"2020-02-07T01:01:05.837Z\",\r\n \"description\": \"Petstore second revision\",\r\n \"privateUrl\": \"/swaggerApi;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"apiId\": \"/apis/apiid1901;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2020-02-07T01:00:34.44Z\",\r\n \"updatedDateTime\": \"2020-02-07T01:00:34.47Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerApi\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf982721-9890-4f3d-9f29-e193dc07a82b" + "80308dc9-9004-471c-926f-185368e72a14" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:38 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfIU=\"" + "\"AAAAAAAACm0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c0e300e-05c5-4287-8b4e-6ac3469a5816" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d82dd833-ce59-41cf-ac6b-9adac264b829" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "4615bb5d-8cf1-4e19-adf3-cdd1afd8166d" + "40d8b0d3-4353-48fc-b875-f023462dd15d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000854Z:4615bb5d-8cf1-4e19-adf3-cdd1afd8166d" + "WESTUS:20200207T010139Z:40d8b0d3-4353-48fc-b875-f023462dd15d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:53 GMT" - ], "Content-Length": [ "0" ], @@ -1106,57 +1106,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09fac686-2331-4fd8-9d3a-a12e32b803d2" + "c4455eb1-066b-4d50-b4d7-7c8880077acb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:39 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04b69a58-f597-4ac6-8f96-47d10c9b0719" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "175fbcdc-8971-43a4-8d19-4b3fffe3dccc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "4c4eaab9-5a27-4293-b44a-93933d9d7a38" + "029efeef-296d-4458-a168-afc22c2a29bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000854Z:4c4eaab9-5a27-4293-b44a-93933d9d7a38" + "WESTUS:20200207T010139Z:029efeef-296d-4458-a168-afc22c2a29bb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:54 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1165,61 +1165,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52595e92-086c-427f-9132-595c1a26211d" + "a553882b-d7ef-4085-86b4-74d66b106d02" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93f53931-e4f1-4f24-84ce-be4bacc771d7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e7486fbc-2f6d-4dcc-9296-d462db5875f4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-correlation-request-id": [ - "1a28e918-59fb-4550-aa30-adfe0fb17b27" + "9be8a64b-e499-43a1-871b-d603d2b5776e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000855Z:1a28e918-59fb-4550-aa30-adfe0fb17b27" + "WESTUS:20200207T010141Z:9be8a64b-e499-43a1-871b-d603d2b5776e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:55 GMT" - ], "Content-Length": [ - "517" + "542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1228,26 +1228,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3654\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"notes\": \"update_desc4045\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases/apireleaseid9099\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid9099\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2020-02-07T01:01:40.067Z\",\r\n \"updatedDateTime\": \"2020-02-07T01:01:40.067Z\",\r\n \"notes\": \"update_desc3902\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases/apireleaseid9099?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JlbGVhc2VzL2FwaXJlbGVhc2VpZDkwOTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid4713;rev=2\",\r\n \"notes\": \"revision_description7649\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid1901;rev=2\",\r\n \"notes\": \"revision_description3306\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d082685c-09f2-4daf-bf6f-08a2745defb8" + "1b1a4469-f089-40b7-97d1-8cbb3e6069f1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1260,38 +1260,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:39 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfKk=\"" + "\"AAAAAAAACpE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e038219-9dc7-46ce-89e3-93f73df443ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "97060be3-ee4d-468c-9b52-5471627d3f4a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "3f7168ce-c9cc-4483-b7b1-a31263b1c769" + "fbbbab39-1cb9-474c-8e78-2c265fa424e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000855Z:3f7168ce-c9cc-4483-b7b1-a31263b1c769" + "WESTUS:20200207T010140Z:fbbbab39-1cb9-474c-8e78-2c265fa424e2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:54 GMT" - ], "Content-Length": [ - "647" + "665" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1300,62 +1300,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3654\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713\",\r\n \"createdDateTime\": \"2019-04-12T00:08:54.878586Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:54.878586Z\",\r\n \"notes\": \"revision_description7649\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases/apireleaseid9099\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid9099\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901\",\r\n \"createdDateTime\": \"2020-02-07T01:01:40.0662051Z\",\r\n \"updatedDateTime\": \"2020-02-07T01:01:40.0662051Z\",\r\n \"notes\": \"revision_description3306\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases/apireleaseid9099?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JlbGVhc2VzL2FwaXJlbGVhc2VpZDkwOTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f8cad5-a0e7-4693-9c27-e7a9337b8243" + "d089937c-2236-4d80-a0f0-769ab1bcf2ff" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:39 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfKk=\"" + "\"AAAAAAAACpE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3e33e99-dc59-41ad-9c54-b45f83e9693f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f74c298f-0f98-4f23-9bb6-fbc8c6d7b5be" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "d094fec0-1d0d-4ad7-8673-ed438a7e536a" + "20cf3f04-f3da-4a41-9e63-e9c4bca889ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000855Z:d094fec0-1d0d-4ad7-8673-ed438a7e536a" + "WESTUS:20200207T010140Z:20cf3f04-f3da-4a41-9e63-e9c4bca889ed" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:54 GMT" - ], "Content-Length": [ "0" ], @@ -1367,25 +1367,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases/apireleaseid9099?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JlbGVhc2VzL2FwaXJlbGVhc2VpZDkwOTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid4713;rev=2\",\r\n \"notes\": \"update_desc4045\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid1901;rev=2\",\r\n \"notes\": \"update_desc3902\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e09aa105-ee4c-44cb-83cb-a471e3a6ac65" + "32eeb898-b029-4f4e-b9c1-9f2c54db461a" ], "If-Match": [ - "\"AAAAAAAAfKk=\"" + "\"AAAAAAAACpE=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,33 +1398,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "05557f08-4905-475b-af24-0aaa5afea545" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "960749be-755d-4cdc-b6eb-2f748932d0b7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-correlation-request-id": [ - "0eb0ef75-877c-4455-bbfc-51e52f14960c" + "8de2db0f-73ac-46cc-b3a9-6bb8e3d21ac5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000855Z:0eb0ef75-877c-4455-bbfc-51e52f14960c" + "WESTUS:20200207T010140Z:8de2db0f-73ac-46cc-b3a9-6bb8e3d21ac5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:54 GMT" - ], "Expires": [ "-1" ] @@ -1433,60 +1433,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases/apireleaseid9099?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JlbGVhc2VzL2FwaXJlbGVhc2VpZDkwOTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30887d7d-7f22-4efd-88b1-be1451f1dc3a" + "f21dc012-56da-4d0e-a8fb-d5bd83294fe6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:40 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAfKw=\"" + "\"AAAAAAAACpQ=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07605bc7-71be-4c02-9088-84a8d4edbf4b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e9088135-b797-4a79-8fe6-111fcb969d70" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-correlation-request-id": [ - "a43a9f67-e100-44b1-bf83-d9c9a1b6635c" + "62bd4f74-b04b-4e52-843d-31e52727514a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000855Z:a43a9f67-e100-44b1-bf83-d9c9a1b6635c" + "WESTUS:20200207T010140Z:62bd4f74-b04b-4e52-843d-31e52727514a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:54 GMT" - ], "Content-Length": [ - "630" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1495,61 +1495,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3654\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713\",\r\n \"createdDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"notes\": \"update_desc4045\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases/apireleaseid9099\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid9099\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901\",\r\n \"createdDateTime\": \"2020-02-07T01:01:40.067Z\",\r\n \"updatedDateTime\": \"2020-02-07T01:01:40.067Z\",\r\n \"notes\": \"update_desc3902\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/revisions?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZXZpc2lvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/revisions?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JldmlzaW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ff8b313-dc56-4dc3-bc57-3f6dbf287deb" + "5d548c71-9305-44ab-b280-ea2d109bbde0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ecadb49-1c18-41e0-bc05-38a7eda92e4c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "033fc719-443d-4996-a69d-6d0e839d8fad" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], "x-ms-correlation-request-id": [ - "3d4560c1-0d55-4d8b-b762-d0e2036fdc7b" + "db7ab440-83ff-4008-9048-41430f128952" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000855Z:3d4560c1-0d55-4d8b-b762-d0e2036fdc7b" + "WESTUS:20200207T010141Z:db7ab440-83ff-4008-9048-41430f128952" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:55 GMT" - ], "Content-Length": [ - "521" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1558,125 +1558,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/apiid4713;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2019-04-12T00:08:21.713Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"description\": \"Petstore second revision\",\r\n \"privateUrl\": \"/swaggerApi\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/revisions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/apiid1901;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2020-02-07T01:01:05.62Z\",\r\n \"updatedDateTime\": \"2020-02-07T01:01:40.08Z\",\r\n \"description\": \"Petstore second revision\",\r\n \"privateUrl\": \"/swaggerApi\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/revisions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd72afbf-55af-4e9f-84fd-ccac8c249ef7" + "248030b8-83c7-49c5-a458-a893d8ac56ae" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:41 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e03dd08-d1a0-4f3b-8c0a-a8d0ccc138d3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6f495ca8-90b7-4584-ad98-17c08fe89029" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "293df250-8da7-4a9a-9237-c4ce01f2a217" + "c3000ee9-e297-4aa1-8c67-359f0a17b747" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000856Z:293df250-8da7-4a9a-9237-c4ce01f2a217" + "WESTUS:20200207T010141Z:c3000ee9-e297-4aa1-8c67-359f0a17b747" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:55 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d38dd645-c134-4521-bf26-7b3a2e5ffe95" + "8c791d6c-b765-4691-8f2f-fe95a74288ea" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:41 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca6baf2c-efa6-4036-94cd-c84875934296" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6bf0ad56-e3d7-49f5-a136-830a4222ab43" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "99b91962-c2d6-412c-945e-ff0d6d710318" + "cc24b216-8ca5-4dfa-acf7-a0c05642a9f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000856Z:99b91962-c2d6-412c-945e-ff0d6d710318" + "WESTUS:20200207T010142Z:cc24b216-8ca5-4dfa-acf7-a0c05642a9f6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:55 GMT" - ], "Expires": [ "-1" ] @@ -1685,58 +1685,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid1901/releases/apireleaseid9099?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQxOTAxL3JlbGVhc2VzL2FwaXJlbGVhc2VpZDkwOTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a53b0905-2859-4e3f-a1b3-b2a22a9b90c7" + "4bf3fe75-b3a5-4919-978f-ed047f441521" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:41 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc69937a-abb2-4522-8356-a1a3fa1410db" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9bf2efe8-a5d5-48fa-8fd1-b78b57054eae" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "85180f61-8da7-4771-bc05-460d549de090" + "ddbac6e6-707d-4fcf-9b61-44072e86840f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190412T000856Z:85180f61-8da7-4771-bc05-460d549de090" + "WESTUS:20200207T010142Z:ddbac6e6-707d-4fcf-9b61-44072e86840f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 12 Apr 2019 00:08:55 GMT" - ], "Expires": [ "-1" ] @@ -1747,26 +1747,26 @@ ], "Names": { "CreateListUpdateDelete": [ - "apiid4713", - "apireleaseid3654", - "firstOpRev8365", - "revision_description7649", - "update_desc4045" + "apiid1901", + "apireleaseid9099", + "firstOpRev9764", + "revision_description3306", + "update_desc3902" ], "CreateOperationContract": [ - "azsmnet4811", - "azsmnet790", - "azsmnet9245", - "azsmnet6032", - "azsmnet8807", - "azsmnet4590", - "azsmnet4274", - "azsmnet2536", - "azsmnet9453", - "azsmnet7685", - "azsmnet6184", - "azsmnet8235", - "azsmnet4425" + "azsmnet8234", + "azsmnet9688", + "azsmnet2601", + "azsmnet8589", + "azsmnet8707", + "azsmnet4295", + "azsmnet2339", + "azsmnet38", + "azsmnet7938", + "azsmnet4539", + "azsmnet2801", + "azsmnet1611", + "azsmnet4363" ] }, "Variables": { @@ -1774,7 +1774,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteOpenApiSchema.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteOpenApiSchema.json index c2cc1ce4fe86..73c8f527d897 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteOpenApiSchema.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteOpenApiSchema.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ae6dbc6-8eef-45b0-a7b1-b2c3ab0fa366" + "a46dfbf0-f9ec-4dd1-9c56-7a16a10fa38c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:17 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAF8TCs=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d88e5f3f-e3e1-46f4-a041-5d61b4d63ade", - "8c1dbb91-95b4-4966-b817-40df5aabbf0d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a6b86bee-9e6d-4b9f-8f92-a86227a3b75f", + "164dd934-2d3a-49d1-b397-54d3cecbdffa" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "3c102f5f-9e99-442f-ac8c-d284e4459cb8" + "75eed9e0-c9b1-484b-b0a6-755fe7a3710e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T223952Z:3c102f5f-9e99-442f-ac8c-d284e4459cb8" + "WESTUS:20200207T005318Z:75eed9e0-c9b1-484b-b0a6-755fe7a3710e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:39:51 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF8TCs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26fd9e2f-b625-459f-8ca8-918a455383ec" + "513ca7fc-9e0e-41e4-8ab4-c9fd1cfb59fd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:17 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAF8TCs=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e33eefa7-e467-45e1-b741-f8e3a140c8a4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "59ac26b7-d0a5-48d8-8ac8-60b995711ea6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "44684a45-e4e2-4ae2-9b0d-f75146276350" + "aa1aa54d-c093-490b-ad8b-e0367121b7a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T223952Z:44684a45-e4e2-4ae2-9b0d-f75146276350" + "WESTUS:20200207T005318Z:aa1aa54d-c093-490b-ad8b-e0367121b7a1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:39:51 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,70 +136,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF8TCs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription7455\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4281\",\r\n \"query\": \"query6678\"\r\n },\r\n \"displayName\": \"apiname3965\",\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\": \"apidescription4831\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9476\",\r\n \"query\": \"query7036\"\r\n },\r\n \"displayName\": \"apiname654\",\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": [ - "b47f8633-277a-415d-870a-49d18b6dd049" + "f65aaacb-3d29-4dcc-bba7-c54d2f3c3b09" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "353" + "352" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:19 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJM=\"" + "\"AAAAAAAACWg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cd90733-4739-4622-b4a7-c6b12368a21e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9793a636-f6c0-4b61-867d-324929c917e8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c008dc79-93d8-4d8a-afe5-b9c8254c1e93" + "c436e3b0-e21d-4fad-a6c5-0630ec6d4fbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T223953Z:c008dc79-93d8-4d8a-afe5-b9c8254c1e93" + "WESTUS:20200207T005319Z:c436e3b0-e21d-4fad-a6c5-0630ec6d4fbf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:39:52 GMT" - ], "Content-Length": [ - "734" + "743" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,58 +208,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid171\",\r\n \"properties\": {\r\n \"displayName\": \"apiname3965\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription7455\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4281\",\r\n \"query\": \"query6678\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7981\",\r\n \"properties\": {\r\n \"displayName\": \"apiname654\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4831\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9476\",\r\n \"query\": \"query7036\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJM=\"" + "\"AAAAAAAACWg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bedb870-d2b4-4ec8-9c83-aeb4b4c31cfe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7d0936e5-2ccc-46a6-bc2b-3ff7bbeec95a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "05aa538f-830a-4816-82c2-c30a245cfdff" + "aee5008f-5cc5-42c0-9103-14245b710a73" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224023Z:05aa538f-830a-4816-82c2-c30a245cfdff" + "WESTUS:20200207T005350Z:aee5008f-5cc5-42c0-9103-14245b710a73" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:23 GMT" - ], "Content-Length": [ - "734" + "743" ], "Content-Type": [ "application/json; charset=utf-8" @@ -268,64 +268,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid171\",\r\n \"properties\": {\r\n \"displayName\": \"apiname3965\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription7455\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4281\",\r\n \"query\": \"query6678\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7981\",\r\n \"properties\": {\r\n \"displayName\": \"apiname654\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4831\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9476\",\r\n \"query\": \"query7036\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b196dd0-15ee-4296-b92b-87bcd793f542" + "6e4b3df7-7741-4c92-9ca8-2d99939405fd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:50 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJM=\"" + "\"AAAAAAAACWg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8064a956-8c7c-486c-83ad-974f93a31aec" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "de63ee06-716c-401c-93d4-f7bb5ae805a0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "bbe568dd-5774-402e-abea-015a38a1e9ba" + "5d013f60-4e54-4611-ac67-3ee6309dfaf1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224023Z:bbe568dd-5774-402e-abea-015a38a1e9ba" + "WESTUS:20200207T005350Z:5d013f60-4e54-4611-ac67-3ee6309dfaf1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:23 GMT" - ], "Content-Length": [ - "734" + "743" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,59 +334,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid171\",\r\n \"properties\": {\r\n \"displayName\": \"apiname3965\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription7455\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4281\",\r\n \"query\": \"query6678\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7981\",\r\n \"properties\": {\r\n \"displayName\": \"apiname654\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4831\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9476\",\r\n \"query\": \"query7036\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67ec7bc2-7e1e-419c-a536-3577a7f7b203" + "278ba99e-6cc0-44de-a29c-3b9d20ae93dc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02c6a50a-bee9-43d9-a91a-4860a36d3a4e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2051c862-d429-4488-9a5f-c5de2bec8002" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "3ef11ac7-e76c-41d3-bf88-aefaf711cf37" + "f6c75271-523f-496d-b6bb-2cad715b3d41" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224025Z:3ef11ac7-e76c-41d3-bf88-aefaf711cf37" + "WESTUS:20200207T005355Z:f6c75271-523f-496d-b6bb-2cad715b3d41" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:25 GMT" - ], "Content-Length": [ "79" ], @@ -401,22 +401,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171/schemas/schemaid5502?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxL3NjaGVtYXMvc2NoZW1haWQ1NTAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981/schemas/schemaid2165?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxL3NjaGVtYXMvc2NoZW1haWQyMTY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [{\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6a381e1-af3e-468f-bb3c-3019db48b5f9" + "24a43982-4b41-4c8d-ace4-5802f456452f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,38 +429,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:51 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJc=\"" + "\"AAAAAAAACWw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2387d95b-baeb-41b7-b9d4-014f1a3540e8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "562d9d7e-ae8b-4e31-b7d6-0edae214a7ab" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "732199ae-d942-4694-8131-89d004665533" + "fa9f6986-11fc-4bf6-83e1-a9030b78915e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224024Z:732199ae-d942-4694-8131-89d004665533" + "WESTUS:20200207T005352Z:fa9f6986-11fc-4bf6-83e1-a9030b78915e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:23 GMT" - ], "Content-Length": [ - "2101" + "2110" ], "Content-Type": [ "application/json; charset=utf-8" @@ -469,61 +469,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171/schemas/schemaid5502\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid5502\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [{\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981/schemas/schemaid2165\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid2165\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [{\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\"\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46047c84-c2d9-4f98-8b71-e34edc1755a0" + "08def5b3-e5ba-4ac5-9042-84a056ab8258" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e3a0ad4-1a8b-42d1-9733-3f83c9f566ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b504a097-1cf1-4d25-844d-61516eb8bc1e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "99ad0b9f-358f-4e01-be29-66a3acc50c2e" + "7fb41eed-d362-4a8f-a584-82ab6610ad41" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224024Z:99ad0b9f-358f-4e01-be29-66a3acc50c2e" + "WESTUS:20200207T005352Z:7fb41eed-d362-4a8f-a584-82ab6610ad41" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:23 GMT" - ], "Content-Length": [ - "2170" + "2194" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,62 +532,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171/schemas/schemaid5502\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid5502\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [{\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981/schemas/schemaid2165\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid2165\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [{\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171/schemas/schemaid5502?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxL3NjaGVtYXMvc2NoZW1haWQ1NTAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981/schemas/schemaid2165?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxL3NjaGVtYXMvc2NoZW1haWQyMTY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da995533-fb1d-4f19-ae78-92ef00bcfd38" + "bc8f57e8-fcdb-46ae-92ac-55984aff3fdc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:52 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJc=\"" + "\"AAAAAAAACWw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2bfd45b-10e9-41d3-8ce6-3d95988b0688" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0c236429-98e7-4c96-8bea-abe4844343c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "7e7ccf96-77f3-4c3c-9fbd-8c5694a68cb2" + "ff0511ef-7d6b-44fd-a1a3-1ffadf33e437" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224024Z:7e7ccf96-77f3-4c3c-9fbd-8c5694a68cb2" + "WESTUS:20200207T005352Z:ff0511ef-7d6b-44fd-a1a3-1ffadf33e437" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:24 GMT" - ], "Content-Length": [ "0" ], @@ -599,121 +599,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171/schemas/schemaid5502?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxL3NjaGVtYXMvc2NoZW1haWQ1NTAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981/schemas/schemaid2165?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxL3NjaGVtYXMvc2NoZW1haWQyMTY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d70d4a43-e753-4353-a355-d854631e718c" + "354de296-cc4d-4cdb-8a8b-7ba4f2e6808f" ], "If-Match": [ - "\"AAAAAAAAgJc=\"" + "\"AAAAAAAACWw=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0190842e-80c2-452e-be5d-bb516ef26238" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4a2529bb-6d57-4006-9d5f-51702fa4f08c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "358d0412-b394-4bdb-ad80-8ee948578db0" + "b7b4da73-61b2-4b3f-9ca2-2a847709e1c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224024Z:358d0412-b394-4bdb-ad80-8ee948578db0" + "WESTUS:20200207T005353Z:b7b4da73-61b2-4b3f-9ca2-2a847709e1c4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:24 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171/schemas/schemaid5502?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxL3NjaGVtYXMvc2NoZW1haWQ1NTAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981/schemas/schemaid2165?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxL3NjaGVtYXMvc2NoZW1haWQyMTY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9231267e-c67f-47fc-a857-d441eecdb3b7" + "015d0d6b-456d-484a-8e4a-b34f42e410e7" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16288581-b6af-4e88-8bb0-bef1c4523892" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "475d6ede-df2e-4d62-a5ba-fc4ac4a5564f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "78c3b503-ea4c-4c20-a033-296a5b2e4357" + "bbad9159-f7cc-4fd3-8b15-e30bfa4b140a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224025Z:78c3b503-ea4c-4c20-a033-296a5b2e4357" + "WESTUS:20200207T005355Z:bbad9159-f7cc-4fd3-8b15-e30bfa4b140a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:25 GMT" - ], "Expires": [ "-1" ] @@ -722,55 +722,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171/schemas/schemaid5502?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxL3NjaGVtYXMvc2NoZW1haWQ1NTAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981/schemas/schemaid2165?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxL3NjaGVtYXMvc2NoZW1haWQyMTY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b49e8ea9-f3ec-4942-a7e0-606d3ccac4f6" + "719784cf-9e71-44c4-b933-1c64a8ea19ce" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f293c9d8-dca2-4cad-9861-5ae6d9829236" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "18f9f2fe-721c-453b-b594-555a59a472d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "2b22eb14-8e23-4f4d-82e4-8ced904a6abc" + "c52cfd6c-3c5f-4c7e-aa1f-471843df3908" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224025Z:2b22eb14-8e23-4f4d-82e4-8ced904a6abc" + "WESTUS:20200207T005353Z:c52cfd6c-3c5f-4c7e-aa1f-471843df3908" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:24 GMT" - ], "Content-Length": [ "82" ], @@ -785,121 +785,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "418008da-83b2-454c-8035-c5edf0718f3d" + "014833b8-3f49-4b8c-83d5-4b302210dac1" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86b51d37-ce4c-4750-be5d-77b2dfbaeea1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a32ee21f-19c9-418f-9a60-01c9e4d5bde6" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "398080a7-79c5-45b7-8abe-f754d7118f0b" + "a2644ee1-48a7-4d57-895f-9ab4ffd014b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224025Z:398080a7-79c5-45b7-8abe-f754d7118f0b" + "WESTUS:20200207T005355Z:a2644ee1-48a7-4d57-895f-9ab4ffd014b7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:24 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid171?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTcxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid7981?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ3OTgxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f64f2249-ff9e-40c6-b059-3c2cbc2131ca" + "ddd096e8-b701-4903-84f7-6bc26eda1813" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40046b2c-14a3-4e1a-8498-115bf722b4f4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "03744cde-766f-4cc2-b779-763687f5936c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "920d74fe-51d6-469d-9eff-2d082102b18a" + "e5280c79-2033-4f93-9c24-2e3edd8a8c0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224025Z:920d74fe-51d6-469d-9eff-2d082102b18a" + "WESTUS:20200207T005356Z:e5280c79-2033-4f93-9c24-2e3edd8a8c0b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:25 GMT" - ], "Expires": [ "-1" ] @@ -910,12 +910,12 @@ ], "Names": { "CreateListUpdateDeleteOpenApiSchema": [ - "apiid171", - "schemaid5502", - "apiname3965", - "apidescription7455", - "header4281", - "query6678" + "apiid7981", + "schemaid2165", + "apiname654", + "apidescription4831", + "header9476", + "query7036" ] }, "Variables": { @@ -923,7 +923,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteSwaggerSchema.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteSwaggerSchema.json index b8e71bb602f3..04258ea3b323 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteSwaggerSchema.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteSwaggerSchema.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4978020a-84ab-4d4d-9595-4b7b0b03b17b" + "41758787-7ea3-4b47-9627-57b4ebadd539" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAF8TCs=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6e2e4f4-4880-4878-ae64-238018f215f8", - "71062a32-fbcb-4388-a3de-1d759fb40c8a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8c395296-e176-48a6-85f8-77f1eac3dbe9", + "24b95840-9210-4719-806a-286c859a15ea" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "f1fbb770-74f2-454e-b869-a48204ab5748" + "5b7b385c-4802-4e8f-91c5-addffe09e80d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224027Z:f1fbb770-74f2-454e-b869-a48204ab5748" + "WESTUS:20200207T005357Z:5b7b385c-4802-4e8f-91c5-addffe09e80d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:27 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF8TCs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26e3be05-a0da-4f11-a7aa-9019e5cb3971" + "a134c2f1-4d72-4518-ae98-48c8d873b1b0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAF8TCs=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ca5b642-2e24-4a22-b96a-137633f080cd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "48847201-be8a-4365-bbeb-d430cdf2c446" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "ea68078c-cba1-44fb-96d0-48ae62507de1" + "d94f716f-e8e4-4ac2-bdb2-0ea48dcd3c25" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224027Z:ea68078c-cba1-44fb-96d0-48ae62507de1" + "WESTUS:20200207T005357Z:d94f716f-e8e4-4ac2-bdb2-0ea48dcd3c25" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:27 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,70 +136,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF8TCs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription8692\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header378\",\r\n \"query\": \"query4104\"\r\n },\r\n \"displayName\": \"apiname9503\",\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\": \"apidescription3033\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4149\",\r\n \"query\": \"query277\"\r\n },\r\n \"displayName\": \"apiname813\",\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": [ - "7f2a1303-74fc-437a-97a3-2767cb4ad4a7" + "8752982a-da4c-4e89-b9c1-7820247746df" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "352" + "351" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJo=\"" + "\"AAAAAAAACXA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d50df62a-ddec-45f1-9c59-6cc788e69e31" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1e498f08-aa2b-4b6f-932b-1e278efe5d88" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "4e536267-d9ff-4727-8fee-4b54ab1e3fa8" + "331bf9ea-a250-488c-aa09-20d17ecea20b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224028Z:4e536267-d9ff-4727-8fee-4b54ab1e3fa8" + "WESTUS:20200207T005357Z:331bf9ea-a250-488c-aa09-20d17ecea20b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:28 GMT" - ], "Content-Length": [ - "735" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,58 +208,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4293\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9503\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8692\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header378\",\r\n \"query\": \"query4104\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4315\",\r\n \"properties\": {\r\n \"displayName\": \"apiname813\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3033\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4149\",\r\n \"query\": \"query277\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:27 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJo=\"" + "\"AAAAAAAACXA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af148943-1a71-4425-8ebd-49f614821f22" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "78e49efd-5dd1-45f9-898d-85fc7f92b516" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "b569f92d-57bd-411a-8921-17096ab09b12" + "98883239-dbdb-42ae-a0d3-fcd9c1416b21" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224058Z:b569f92d-57bd-411a-8921-17096ab09b12" + "WESTUS:20200207T005427Z:98883239-dbdb-42ae-a0d3-fcd9c1416b21" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:58 GMT" - ], "Content-Length": [ - "735" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -268,64 +268,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4293\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9503\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8692\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header378\",\r\n \"query\": \"query4104\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4315\",\r\n \"properties\": {\r\n \"displayName\": \"apiname813\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3033\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4149\",\r\n \"query\": \"query277\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acad0295-d38b-4157-8ae4-1a6661c6800d" + "e6fff5ca-6551-44c6-8ec1-b0e2c321fa67" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:27 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJo=\"" + "\"AAAAAAAACXA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "909831f9-ce97-422f-a53b-74e568814569" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9cd39205-8492-42af-9d4e-d73bf1475bc2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "9c6f4c6e-513f-40eb-aa50-7cba7c23e962" + "0212f059-621a-4cad-9633-7743e7b1c747" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224058Z:9c6f4c6e-513f-40eb-aa50-7cba7c23e962" + "WESTUS:20200207T005428Z:0212f059-621a-4cad-9633-7743e7b1c747" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:58 GMT" - ], "Content-Length": [ - "735" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,59 +334,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4293\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9503\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8692\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header378\",\r\n \"query\": \"query4104\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4315\",\r\n \"properties\": {\r\n \"displayName\": \"apiname813\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3033\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4149\",\r\n \"query\": \"query277\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ddd373c-a574-48c7-8d91-7145b0d9e3b8" + "553903e7-fa98-4bbf-b50f-5eef71d9c785" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f688a5a-ce4e-47f7-84b2-0382b3b05306" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "04403bb6-5e76-463f-8e1f-b75318149376" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "f0f8565e-81d7-44b6-a4e0-a4c9a3af776d" + "c93b34ca-abfe-4cd0-8a5a-285159c466ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224100Z:f0f8565e-81d7-44b6-a4e0-a4c9a3af776d" + "WESTUS:20200207T005429Z:c93b34ca-abfe-4cd0-8a5a-285159c466ac" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:59 GMT" - ], "Content-Length": [ "79" ], @@ -401,22 +401,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293/schemas/schemaid4109?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5My9zY2hlbWFzL3NjaGVtYWlkNDEwOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315/schemas/schemaid3952?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1L3NjaGVtYXMvc2NoZW1haWQzOTUyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [{\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "98f4f9aa-2b59-47d0-b6da-51fad57bb863" + "ab372200-eb2a-4663-a897-bce75c24217a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,38 +429,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJ4=\"" + "\"AAAAAAAACXQ=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe8e9f12-4525-4b4b-a0da-38ddc47dcddf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2fbe06bd-2312-4274-802e-7cecdf4dfd5b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "05233547-ce41-4999-b509-879467b90903" + "2ba1d062-5f4a-4438-b816-0484a00e68d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224059Z:05233547-ce41-4999-b509-879467b90903" + "WESTUS:20200207T005428Z:2ba1d062-5f4a-4438-b816-0484a00e68d9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:58 GMT" - ], "Content-Length": [ - "1715" + "1723" ], "Content-Type": [ "application/json; charset=utf-8" @@ -469,61 +469,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293/schemas/schemaid4109\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid4109\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315/schemas/schemaid3952\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid3952\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5My9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9112e32-5f64-4fa2-8bba-9f2ccd87cfe7" + "c47639b3-2f0b-47db-a575-d8a23de5832a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2aeead01-79b0-4c55-849e-9a27860963ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b084a6f6-2723-4ffd-b240-75f335de5bab" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "49abcb2c-aeaa-4fbc-b531-0cd556176f54" + "1c4a230f-9832-4f36-8064-5cbe101c0705" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224059Z:49abcb2c-aeaa-4fbc-b531-0cd556176f54" + "WESTUS:20200207T005428Z:1c4a230f-9832-4f36-8064-5cbe101c0705" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:58 GMT" - ], "Content-Length": [ - "2008" + "2031" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,62 +532,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293/schemas/schemaid4109\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid4109\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315/schemas/schemaid3952\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid3952\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293/schemas/schemaid4109?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5My9zY2hlbWFzL3NjaGVtYWlkNDEwOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315/schemas/schemaid3952?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1L3NjaGVtYXMvc2NoZW1haWQzOTUyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b3f3bce-6663-4fbd-8c0d-ce09d8fb8c94" + "77bc7912-f1de-499e-8bbf-3fd0b65d95b4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgJ4=\"" + "\"AAAAAAAACXQ=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6918a562-1741-494f-8139-2424f1333997" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "576b82a4-2be4-45a4-ac04-232246c9e38a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "927f3e4e-e81a-4ea9-a14f-3afb97d0a1b6" + "11e90aaf-f7dc-4f45-b3ee-faea9dcd9270" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224059Z:927f3e4e-e81a-4ea9-a14f-3afb97d0a1b6" + "WESTUS:20200207T005428Z:11e90aaf-f7dc-4f45-b3ee-faea9dcd9270" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:59 GMT" - ], "Content-Length": [ "0" ], @@ -599,121 +599,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293/schemas/schemaid4109?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5My9zY2hlbWFzL3NjaGVtYWlkNDEwOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315/schemas/schemaid3952?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1L3NjaGVtYXMvc2NoZW1haWQzOTUyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7f02ca3-3174-47be-98b7-39f689cb4e10" + "6adb15e7-3516-45af-a38b-d670389e95ec" ], "If-Match": [ - "\"AAAAAAAAgJ4=\"" + "\"AAAAAAAACXQ=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e267be13-84f6-4194-8f35-8c1ab1a45bf7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c05cf799-a0a3-45e1-a2f6-d8c28114e8c2" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "2d3bc7be-129d-419d-a88b-637fc6cd8628" + "1a2d4a63-db9e-413c-bce4-1af9f47a320b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224059Z:2d3bc7be-129d-419d-a88b-637fc6cd8628" + "WESTUS:20200207T005428Z:1a2d4a63-db9e-413c-bce4-1af9f47a320b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:59 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293/schemas/schemaid4109?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5My9zY2hlbWFzL3NjaGVtYWlkNDEwOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315/schemas/schemaid3952?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1L3NjaGVtYXMvc2NoZW1haWQzOTUyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f4780e7-04a6-470c-b357-c351130bcdf2" + "a06bc1b2-d87b-4bd3-9c9f-cbc9ed8ab755" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "259e199e-05a7-4f8c-b6a2-015dd6c2ff22" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "201a1525-2b67-4f33-bd31-f8680e30acc9" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "05850fd3-64a8-49c8-b300-22ff6b88c8ab" + "b5353d27-720d-4e86-b10e-2a4706b0747d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224100Z:05850fd3-64a8-49c8-b300-22ff6b88c8ab" + "WESTUS:20200207T005429Z:b5353d27-720d-4e86-b10e-2a4706b0747d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:41:00 GMT" - ], "Expires": [ "-1" ] @@ -722,55 +722,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293/schemas/schemaid4109?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5My9zY2hlbWFzL3NjaGVtYWlkNDEwOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315/schemas/schemaid3952?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1L3NjaGVtYXMvc2NoZW1haWQzOTUyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4198bf6c-18b8-4213-8c86-9b97e30362aa" + "f58732c5-79cc-4f2a-b6b8-995e4b5514f7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3413b8c1-0f55-42a0-9d8e-481f32dd89b3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1a2fb592-d69e-4de8-99dd-9bbf18730dfd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "bcdbbe46-eb5b-41e2-9b8d-2ce0f29df7b7" + "7d7a1315-8f83-4ced-915c-ad72c9c82ddc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224059Z:bcdbbe46-eb5b-41e2-9b8d-2ce0f29df7b7" + "WESTUS:20200207T005428Z:7d7a1315-8f83-4ced-915c-ad72c9c82ddc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:59 GMT" - ], "Content-Length": [ "82" ], @@ -785,121 +785,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bc421a0-0937-40c5-88f3-9d8df2735301" + "821229a7-d907-4912-98d3-6376200586ba" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:28 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eada9ecb-547e-42d5-bca7-3c7bedc7df5d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "af7e9198-325d-47cf-912f-4946b99c8b51" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "2209d976-0bf7-4e45-9bd4-d76f50375c30" + "65813964-ec52-4aa5-a8ad-dfca07bf99f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224100Z:2209d976-0bf7-4e45-9bd4-d76f50375c30" + "WESTUS:20200207T005429Z:65813964-ec52-4aa5-a8ad-dfca07bf99f6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:40:59 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4293?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDI5Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4315?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7243d626-9d9c-43a2-b601-a2314b4ab192" + "4c2424b7-9bea-46d7-9d96-70d4d82337b5" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8704d6f4-bc8e-471e-9347-8e3811d330b4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bcf0a1d5-4ecb-49de-b372-a2ccbcbe65f5" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "6a756052-4beb-47b3-9fd7-cb8e73013e02" + "244eda8c-8637-4ee5-a806-a489f0078240" ], "x-ms-routing-request-id": [ - "WESTUS2:20190501T224100Z:6a756052-4beb-47b3-9fd7-cb8e73013e02" + "WESTUS:20200207T005429Z:244eda8c-8637-4ee5-a806-a489f0078240" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 01 May 2019 22:41:00 GMT" - ], "Expires": [ "-1" ] @@ -910,12 +910,12 @@ ], "Names": { "CreateListUpdateDeleteSwaggerSchema": [ - "apiid4293", - "schemaid4109", - "apiname9503", - "apidescription8692", - "header378", - "query4104" + "apiid4315", + "schemaid3952", + "apiname813", + "apidescription3033", + "header4149", + "query277" ] }, "Variables": { @@ -923,7 +923,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteWsdlSchema.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteWsdlSchema.json index 06ffc46da312..9329c2ab69a3 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteWsdlSchema.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiSchemaTests/CreateListUpdateDeleteWsdlSchema.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fabdcd73-7e98-4e26-962e-61982eb49bdd" + "392e44fe-8250-4bd5-b410-55c37ad39c44" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:29 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAF8TCs=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6fbaef42-31f7-4850-b8e6-730b619538b0", - "f9ff23e6-63b2-4bdc-82e0-25052361bc5b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "98b22d34-7ebc-4003-8577-dfd336e9267e", + "210fe25d-d41c-48ca-839b-58b5431367a4" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "448086af-eaba-4752-a661-3ccb07c59a7e" + "1971f730-75de-42f2-9d8c-79213762bcf8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183539Z:448086af-eaba-4752-a661-3ccb07c59a7e" + "WESTUS:20200207T005430Z:1971f730-75de-42f2-9d8c-79213762bcf8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:35:39 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF8TCs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d7f9d60-465e-4ef7-8cb4-f3ccd3c52fe5" + "b71e5ad1-da61-416a-9e84-d82b51213ca3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:29 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAF8TCs=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a7e3864-9533-412d-be79-3e3aeb46c979" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4b893249-3037-49c4-b7d5-cb862c9902b3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "d620ca73-7794-4d64-a1be-cb1248873444" + "d43b55b9-c602-4523-9881-2d9ad070f10c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183539Z:d620ca73-7794-4d64-a1be-cb1248873444" + "WESTUS:20200207T005430Z:d43b55b9-c602-4523-9881-2d9ad070f10c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:35:39 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF8TCs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription9697\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header7385\",\r\n \"query\": \"query2034\"\r\n },\r\n \"displayName\": \"apiname941\",\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\": \"apidescription828\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3654\",\r\n \"query\": \"query9435\"\r\n },\r\n \"displayName\": \"apiname9817\",\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": [ - "86c1600c-540a-400d-8664-339cf8efe077" + "6a490ccc-cf7a-4aea-acd7-819dc11ed38d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +168,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:54:30 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgKg=\"" + "\"AAAAAAAACXc=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "658f3c0f-1359-4054-b5c7-c541909bfe57" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ead5b39a-1993-46ff-b83b-d5cbb175783f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "9b7ba99e-c552-4acc-86c4-e2aa841c1c26" + "f6f3416e-4338-44c7-b8ed-e3d064cfb64f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183540Z:9b7ba99e-c552-4acc-86c4-e2aa841c1c26" + "WESTUS:20200207T005431Z:f6f3416e-4338-44c7-b8ed-e3d064cfb64f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:35:40 GMT" - ], "Content-Length": [ - "733" + "741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,58 +208,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid574\",\r\n \"properties\": {\r\n \"displayName\": \"apiname941\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9697\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header7385\",\r\n \"query\": \"query2034\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid423\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9817\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription828\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3654\",\r\n \"query\": \"query9435\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgKg=\"" + "\"AAAAAAAACXc=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a89835d-3edf-4d7b-8675-032551dfa0e6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9cae3d36-aa51-463a-b9a4-9c1f6ffcf93d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "6d9976e6-2f53-45d8-b7b4-17bf80110198" + "bc0774db-17f5-44c6-b9fb-24b716fcb8a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183611Z:6d9976e6-2f53-45d8-b7b4-17bf80110198" + "WESTUS:20200207T005501Z:bc0774db-17f5-44c6-b9fb-24b716fcb8a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:11 GMT" - ], "Content-Length": [ - "733" + "741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -268,64 +268,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid574\",\r\n \"properties\": {\r\n \"displayName\": \"apiname941\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9697\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header7385\",\r\n \"query\": \"query2034\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid423\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9817\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription828\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3654\",\r\n \"query\": \"query9435\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fdf5bf3-e882-409b-b1b2-0a1031fa8dff" + "3658b6fd-0dee-4770-b627-869be7d83ed9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgKg=\"" + "\"AAAAAAAACXc=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2297aa35-5331-4dcb-9c1a-061da5639121" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8fc892c3-2a43-4775-9580-3eadd759e6df" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "a343112d-ea9c-40e0-b5fa-276b305c49a1" + "1ee2a15f-bef7-415e-b773-454efa4e75b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183611Z:a343112d-ea9c-40e0-b5fa-276b305c49a1" + "WESTUS:20200207T005501Z:1ee2a15f-bef7-415e-b773-454efa4e75b5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:11 GMT" - ], "Content-Length": [ - "733" + "741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,59 +334,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid574\",\r\n \"properties\": {\r\n \"displayName\": \"apiname941\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9697\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header7385\",\r\n \"query\": \"query2034\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid423\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9817\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription828\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3654\",\r\n \"query\": \"query9435\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "495338c3-d702-4858-b1b8-d3cc73b55929" + "92864f60-fe90-4cf8-9391-40149bf9de32" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bd8aea0-6b02-480c-8f8c-fc4d926bbd3b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f87f702d-2d98-4ff6-a025-f6b4b344e6f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "1f11e1fd-757e-48fa-afd1-6aaa448f6f4d" + "e4e31488-16e6-4609-9785-2f364d1521dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183645Z:1f11e1fd-757e-48fa-afd1-6aaa448f6f4d" + "WESTUS:20200207T005502Z:e4e31488-16e6-4609-9785-2f364d1521dc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:44 GMT" - ], "Content-Length": [ "79" ], @@ -401,22 +401,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574/schemas/schemaid5519?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0L3NjaGVtYXMvc2NoZW1haWQ1NTE5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423/schemas/schemaid2390?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjMvc2NoZW1hcy9zY2hlbWFpZDIzOTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a5b314ba-1435-44ac-bd55-728fa75519b1" + "d4f9f5bc-068a-4d1b-b068-339e9c6152d0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,38 +429,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgKw=\"" + "\"AAAAAAAACXs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a00cb29-4d40-46a5-b5cd-2b0f12be1f02" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "472e6a17-6a4e-4491-b226-1ccc6c1f157e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "68aa40e0-0c29-4baa-a605-3b63ad306e76" + "6dd7012c-08cc-4d6b-a23c-20cfd1bfe218" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183612Z:68aa40e0-0c29-4baa-a605-3b63ad306e76" + "WESTUS:20200207T005501Z:6dd7012c-08cc-4d6b-a23c-20cfd1bfe218" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:11 GMT" - ], "Content-Length": [ - "1733" + "1741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -469,61 +469,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574/schemas/schemaid5519\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid5519\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423/schemas/schemaid2390\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid2390\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjMvc2NoZW1hcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8276576-7f63-40cd-8b56-b55f41165ed5" + "091f4590-48a1-4aec-a2c1-1c95ea5daa1e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03f38f6e-12ea-4471-acb1-6a2feaf38a1a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fdbd432a-1989-4b25-8503-53e24b03fb18" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "44b8950d-e0ce-479b-8f4b-90e7b74cd31d" + "430f1cc5-2a3d-41a5-873d-ad44e7593edf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183642Z:44b8950d-e0ce-479b-8f4b-90e7b74cd31d" + "WESTUS:20200207T005501Z:430f1cc5-2a3d-41a5-873d-ad44e7593edf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:41 GMT" - ], "Content-Length": [ - "1802" + "1825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,62 +532,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574/schemas/schemaid5519\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid5519\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423/schemas/schemaid2390\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid2390\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574/schemas/schemaid5519?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0L3NjaGVtYXMvc2NoZW1haWQ1NTE5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423/schemas/schemaid2390?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjMvc2NoZW1hcy9zY2hlbWFpZDIzOTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6e52106-1b91-464f-8e02-ee17bd8d1adf" + "2a7340ed-4366-410e-b753-a9578a9ce236" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgKw=\"" + "\"AAAAAAAACXs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "444fbc51-205c-4698-bc58-19c4c6cdd3d5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8182643a-d3e5-4e8a-9faa-1a4cff8bb23c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "5c31b8a8-4676-449b-9272-e6e817223260" + "a100066c-5f33-40f6-81e1-d23204847786" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183642Z:5c31b8a8-4676-449b-9272-e6e817223260" + "WESTUS:20200207T005502Z:a100066c-5f33-40f6-81e1-d23204847786" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:41 GMT" - ], "Content-Length": [ "0" ], @@ -599,121 +599,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574/schemas/schemaid5519?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0L3NjaGVtYXMvc2NoZW1haWQ1NTE5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423/schemas/schemaid2390?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjMvc2NoZW1hcy9zY2hlbWFpZDIzOTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7c3fc42-4ce1-411a-b870-60a46a504b43" + "62e2be5d-85d0-4f32-a1b2-3a6b31925d7a" ], "If-Match": [ - "\"AAAAAAAAgKw=\"" + "\"AAAAAAAACXs=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5eb11f62-4106-4497-bbd2-51e95f4371ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f5b6dcc4-c934-4985-b0f1-3c7c14b56d2a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "1731ce26-54ef-466d-9237-f30ce06eb802" + "ab0f5636-582e-4362-b467-2523d733ef19" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183643Z:1731ce26-54ef-466d-9237-f30ce06eb802" + "WESTUS:20200207T005502Z:ab0f5636-582e-4362-b467-2523d733ef19" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574/schemas/schemaid5519?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0L3NjaGVtYXMvc2NoZW1haWQ1NTE5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423/schemas/schemaid2390?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjMvc2NoZW1hcy9zY2hlbWFpZDIzOTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54174978-67e0-4c3e-90f0-53fbd69c090d" + "edb56e76-3f44-442e-a979-d17eb6e02dff" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11c6b092-4524-4a74-87aa-dbff3252b5e0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c12a548c-59cd-431b-94d7-d6f2c9d14613" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "2b147689-12f8-447a-aaf9-56c31668517d" + "2099a573-13b5-42a0-b122-fef7335de297" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183645Z:2b147689-12f8-447a-aaf9-56c31668517d" + "WESTUS:20200207T005502Z:2099a573-13b5-42a0-b122-fef7335de297" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:44 GMT" - ], "Expires": [ "-1" ] @@ -722,55 +722,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574/schemas/schemaid5519?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0L3NjaGVtYXMvc2NoZW1haWQ1NTE5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423/schemas/schemaid2390?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjMvc2NoZW1hcy9zY2hlbWFpZDIzOTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abae77c2-3386-4676-a107-154d73253a98" + "bb5b3089-9800-4eb5-b71a-feed9ff3b7c6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66e05c8d-a78c-49d5-a6a4-75aab5598524" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8fa808ce-3c8b-4d90-82cf-c58993377e2c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "fb602ad6-d968-460e-bd82-84fd07c127ad" + "989035ab-6054-401b-96ef-8fc3d930b109" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183643Z:fb602ad6-d968-460e-bd82-84fd07c127ad" + "WESTUS:20200207T005502Z:989035ab-6054-401b-96ef-8fc3d930b109" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:42 GMT" - ], "Content-Length": [ "82" ], @@ -785,121 +785,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71a38311-5bd1-462a-a9df-6c84cb8f0d77" + "dda515d2-326e-48a6-a54e-e90b45a7c965" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4e9011f-e361-468d-a759-00142ed74db4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "18659f80-1c5e-40ac-893e-6f4ba158f852" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "628c917c-7e1b-4795-a134-d789c59c5450" + "4fb7fe44-e171-451a-a4f6-f0f7573ef011" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183644Z:628c917c-7e1b-4795-a134-d789c59c5450" + "WESTUS:20200207T005502Z:4fb7fe44-e171-451a-a4f6-f0f7573ef011" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid574?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNTc0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid423?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0MjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4721b046-f8e0-4b6d-b797-28c60eb6f51f" + "c2107f4a-6ead-4fc1-a31f-f012ae87fc49" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15f77e31-6079-41e8-94bb-34312b9f5b3f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "92bd57ba-eec2-4edf-80a2-fd9a4b0fb6fe" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "5d1df5ed-7cc4-4cf9-aad0-99707fee5d68" + "06d183d1-f993-48a2-bf0c-fb28f2fcb169" ], "x-ms-routing-request-id": [ - "WESTUS2:20190502T183645Z:5d1df5ed-7cc4-4cf9-aad0-99707fee5d68" + "WESTUS:20200207T005502Z:06d183d1-f993-48a2-bf0c-fb28f2fcb169" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 02 May 2019 18:36:44 GMT" - ], "Expires": [ "-1" ] @@ -910,12 +910,12 @@ ], "Names": { "CreateListUpdateDeleteWsdlSchema": [ - "apiid574", - "schemaid5519", - "apiname941", - "apidescription9697", - "header7385", - "query2034" + "apiid423", + "schemaid2390", + "apiname9817", + "apidescription828", + "header3654", + "query9435" ] }, "Variables": { @@ -923,7 +923,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } 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 152f431ae28c..ff60d32a1034 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f58b0028-265f-4d02-b5e9-7c79f4602e84" + "bf95835d-2193-4487-aa05-04413f280584" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:56 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8645d6c8-7046-4d4b-b52b-bb5ff9a8a4f1", - "d7659e1e-6742-484e-ac3f-f096b6522a18" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "24dbf581-0caa-4d37-a4f8-7db0c179e732", + "a919931d-fc3f-41f3-85ff-b7c5be941aff" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "67caf025-8a52-4a6a-a97b-85930c7977be" + "5d428596-d01c-4777-b6df-941fd0dc2661" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020958Z:67caf025-8a52-4a6a-a97b-85930c7977be" + "WESTUS:20200207T010156Z:5d428596-d01c-4777-b6df-941fd0dc2661" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:58 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e06b2956-c143-414c-8baf-c12ac3316d96" + "c3a6813a-8912-4902-aacc-0279751b24b5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:56 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23fa86d9-afbc-4f51-9afc-688de437ad31" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "18c9c1eb-6c66-4688-8f90-4561cc908933" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "4dc08a8b-03f9-4214-9185-d19b7f09a5df" + "2350938d-ec9c-4d55-a9dc-e1f27e075876" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020959Z:4dc08a8b-03f9-4214-9185-d19b7f09a5df" + "WESTUS:20200207T010156Z:2350938d-ec9c-4d55-a9dc-e1f27e075876" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:58 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3N3YWdnZXJBcGlJZDI1NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvc3dhZ2dlckFwaUlkOTE1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63bbfa6d-b3ca-4c5e-904f-3194508f2f37" + "cc69a091-be45-4b21-afa4-613eb53a65e9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,95 +168,95 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:56 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564?api-version=2019-01-01&asyncId=5caea1f7b597440f487b0e03&asyncCode=201" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150?api-version=2019-01-01&asyncId=5e3cb7052393691028e5c675&asyncCode=201" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "533b5890-8f91-4cb4-b766-05a5afaff886" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "77ce7383-4c43-4b15-aa1d-ab899a73c894" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "d00a99b6-533a-4104-ac35-c74850e61345" + "4eb1ea80-1c83-4623-888b-6cc32b7f508c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020959Z:d00a99b6-533a-4104-ac35-c74850e61345" + "WESTUS:20200207T010157Z:4eb1ea80-1c83-4623-888b-6cc32b7f508c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:59 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564?api-version=2019-01-01&asyncId=5caea1f7b597440f487b0e03&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3N3YWdnZXJBcGlJZDI1NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMWY3YjU5NzQ0MGY0ODdiMGUwMyZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150?api-version=2019-01-01&asyncId=5e3cb7052393691028e5c675&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvc3dhZ2dlckFwaUlkOTE1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAxJmFzeW5jSWQ9NWUzY2I3MDUyMzkzNjkxMDI4ZTVjNjc1JmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:26 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcVQ=\"" + "\"AAAAAAAACrE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4a4a397-27f3-43b3-b73a-cc0567bf9f37" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5c0f66db-10d5-49ed-90f2-a7bfd670878e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "ae7a8cd4-e3f3-4f4e-8c43-be98c4dc4982" + "3d0ff470-6cdf-4af8-9914-70aae7a704e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021029Z:ae7a8cd4-e3f3-4f4e-8c43-be98c4dc4982" + "WESTUS:20200207T010227Z:3d0ff470-6cdf-4af8-9914-70aae7a704e4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:10:28 GMT" - ], "Content-Length": [ - "862" + "870" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,61 +265,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"swaggerApiId2564\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"swaggerApiId9150\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3N3YWdnZXJBcGlJZDI1NjQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvc3dhZ2dlckFwaUlkOTE1MC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "911bfc44-4dbd-497a-825b-b3878308edb7" + "a064e6d0-6b24-4759-82d4-3cfe018aa6b1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3316d1c5-3a7a-49b1-97d8-a381b46904a5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "93e64e84-7022-48ee-8b29-ecc60acbf54a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "bdebd280-4532-4cf9-b822-67b98568f318" + "89d54023-61cc-43a2-b70f-4fb2077fa474" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021029Z:bdebd280-4532-4cf9-b822-67b98568f318" + "WESTUS:20200207T010227Z:89d54023-61cc-43a2-b70f-4fb2077fa474" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:10:29 GMT" - ], "Content-Length": [ - "19015" + "19094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -328,26 +328,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3516?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQzNTE2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authorizationServerId4195?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhvcml6YXRpb25TZXJ2ZXJJZDQxOTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"defaultScope\": \"oauth2scope8057\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName7462\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\"\r\n ],\r\n \"clientId\": \"clientid1921\"\r\n }\r\n}", + "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\": \"oauth2scope4935\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName3731\",\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\": \"clientid2961\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2b59a030-ccfc-4a0b-b072-54e762b09659" + "4e53683b-f698-4418-868b-e37de081e05d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,38 +360,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:27 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcXE=\"" + "\"AAAAAAAACs4=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e2f2b59-6e18-4ff4-831e-fde26cd149c6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "419c74a4-1018-43e2-a78c-dff066472c0d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "007d34b7-ed81-4570-aae5-760720919d95" + "4e338d15-5b0b-4586-ab3a-0d8d0eb59c0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021030Z:007d34b7-ed81-4570-aae5-760720919d95" + "WESTUS:20200207T010228Z:4e338d15-5b0b-4586-ab3a-0d8d0eb59c0c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:10:29 GMT" - ], "Content-Length": [ - "1086" + "1067" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,70 +400,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3516\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId3516\",\r\n \"properties\": {\r\n \"displayName\": \"authName7462\",\r\n \"description\": null,\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": null,\r\n \"tokenBodyParameters\": null,\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"oauth2scope8057\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid1921\",\r\n \"clientSecret\": null,\r\n \"resourceOwnerUsername\": null,\r\n \"resourceOwnerPassword\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authorizationServerId4195\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId4195\",\r\n \"properties\": {\r\n \"displayName\": \"authName3731\",\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\": \"oauth2scope4935\",\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\": \"clientid2961\",\r\n \"resourceOwnerUsername\": null,\r\n \"resourceOwnerPassword\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0NTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription1680\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId3516\",\r\n \"scope\": \"oauth2scope1493\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header8104\",\r\n \"query\": \"query241\"\r\n },\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564\",\r\n \"displayName\": \"apiname6967\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription4888\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId4195\",\r\n \"scope\": \"oauth2scope7480\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header2889\",\r\n \"query\": \"query8227\"\r\n },\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150\",\r\n \"displayName\": \"apiname782\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "84a92cf0-1128-4616-9bc8-5f28ba4e3c80" + "a9d91c95-1248-4a60-9a0e-98177b05030a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "746" + "754" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:27 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcXI=\"" + "\"AAAAAAAACs8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e510667-9ef8-446a-882d-c9c8b8ee9742" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c2ba163d-2181-4854-be98-69071c6fc6b0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "1a543cb3-b190-426a-88da-0d5fc66066b7" + "f353739b-7fdb-48aa-8f1b-a0feda99f441" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021031Z:1a543cb3-b190-426a-88da-0d5fc66066b7" + "WESTUS:20200207T010228Z:f353739b-7fdb-48aa-8f1b-a0feda99f441" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:10:30 GMT" - ], "Content-Length": [ - "875" + "883" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,58 +472,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1297\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6967\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1680\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId3516\",\r\n \"scope\": \"oauth2scope1493\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header8104\",\r\n \"query\": \"query241\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4597\",\r\n \"properties\": {\r\n \"displayName\": \"apiname782\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4888\",\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\": \"authorizationServerId4195\",\r\n \"scope\": \"oauth2scope7480\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header2889\",\r\n \"query\": \"query8227\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0NTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcXI=\"" + "\"AAAAAAAACs8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53ed1584-425c-4b7f-b7c5-e3e3ef968f1d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e8cfc0a2-5c69-4353-a433-a2339b1de65c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "e5d439ca-88b6-4ad3-8db2-56b5a85c3914" + "b10fab38-5ea7-4317-a2b2-eaf2c7a25e91" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021101Z:e5d439ca-88b6-4ad3-8db2-56b5a85c3914" + "WESTUS:20200207T010258Z:b10fab38-5ea7-4317-a2b2-eaf2c7a25e91" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:01 GMT" - ], "Content-Length": [ - "875" + "883" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,64 +532,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1297\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6967\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1680\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId3516\",\r\n \"scope\": \"oauth2scope1493\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header8104\",\r\n \"query\": \"query241\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4597\",\r\n \"properties\": {\r\n \"displayName\": \"apiname782\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4888\",\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\": \"authorizationServerId4195\",\r\n \"scope\": \"oauth2scope7480\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header2889\",\r\n \"query\": \"query8227\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0NTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3468fd4-d9b6-4392-b786-2ad8be0ea256" + "d8df892a-2d1a-4e67-aa2e-52767a363094" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcXI=\"" + "\"AAAAAAAACs8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81264cba-4b23-4110-8c12-453e2b4185b1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1f30cfd2-f9c0-4719-a1ef-de0dacf0945b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "01a2e0ff-0e5e-4414-8a58-b4415a1b16b4" + "b60b5c61-181c-4ed8-aafd-541332b6a88c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021101Z:01a2e0ff-0e5e-4414-8a58-b4415a1b16b4" + "WESTUS:20200207T010259Z:b60b5c61-181c-4ed8-aafd-541332b6a88c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:01 GMT" - ], "Content-Length": [ - "875" + "883" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,61 +598,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1297\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6967\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1680\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId3516\",\r\n \"scope\": \"oauth2scope1493\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header8104\",\r\n \"query\": \"query241\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4597\",\r\n \"properties\": {\r\n \"displayName\": \"apiname782\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4888\",\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\": \"authorizationServerId4195\",\r\n \"scope\": \"oauth2scope7480\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header2889\",\r\n \"query\": \"query8227\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Ny9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0NTk3L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9851c306-a1ac-4b8f-b728-297b95d935ee" + "0195f821-9edc-4bee-91f4-af29db799305" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4024f1e1-9f76-4a81-97bd-02464a97a895" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7923cef7-cd1c-411f-b287-7f281eec48d7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "eedc95c3-1c8a-4442-8d8f-3497b6bdd407" + "03853420-8708-44d4-a8ca-ac88a646da77" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021102Z:eedc95c3-1c8a-4442-8d8f-3497b6bdd407" + "WESTUS:20200207T010259Z:03853420-8708-44d4-a8ca-ac88a646da77" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:01 GMT" - ], "Content-Length": [ - "16892" + "16971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -661,193 +661,193 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e3cb7052393691028e5c674\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3N3YWdnZXJBcGlJZDI1NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/swaggerApiId9150?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvc3dhZ2dlckFwaUlkOTE1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad86d74d-7c16-4857-85d1-069289f63f62" + "0b14cd8a-9d1c-4090-9c4f-0d4b6e766eee" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "470e25fb-5088-4d1e-9b66-bd645f072c70" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "89c68473-999d-40a9-a29c-a54dad393e11" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "b261bc57-27bf-4352-914a-8254ce0e6a32" + "d35b932d-fdcd-47b0-bbba-0372df3130cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021102Z:b261bc57-27bf-4352-914a-8254ce0e6a32" + "WESTUS:20200207T010259Z:d35b932d-fdcd-47b0-bbba-0372df3130cb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:02 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid4597?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQ0NTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7896ed27-3fec-4618-a219-d981c1c6ce9b" + "978edfc5-4156-4d21-9a44-da42bc756633" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bae4978a-8ee0-45e4-89f1-61528e9e5d71" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f6d15c22-77f5-4235-83f7-b8a06c3ef44b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "aa27f85c-4c9a-435c-b8e1-9373b13f4542" + "b5ab8673-dfcf-4bb3-af94-b44ea2dc9b81" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021102Z:aa27f85c-4c9a-435c-b8e1-9373b13f4542" + "WESTUS:20200207T010259Z:b5ab8673-dfcf-4bb3-af94-b44ea2dc9b81" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:02 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3516?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQzNTE2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authorizationServerId4195?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhvcml6YXRpb25TZXJ2ZXJJZDQxOTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a73376e2-8345-43b8-82f5-bd6b8d31ac63" + "80438164-d91d-4d96-91f3-56a78ae5d5b1" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:02:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1dc4606-5ef8-47d8-b817-72618693aa06" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "643d399b-ff3e-47eb-8625-23d7857e38aa" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "29c8de41-832a-461e-8cb2-359236b6a18e" + "1cdf4469-5813-4d76-9290-e11332b6f64e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021103Z:29c8de41-832a-461e-8cb2-359236b6a18e" + "WESTUS:20200207T010259Z:1cdf4469-5813-4d76-9290-e11332b6f64e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:03 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -856,17 +856,17 @@ ], "Names": { "CloneApiUsingSourceApiId": [ - "authorizationServerId3516", - "apiid1297", - "swaggerApiId2564", - "authName7462", - "oauth2scope8057", - "clientid1921", - "apiname6967", - "apidescription1680", - "header8104", - "query241", - "oauth2scope1493" + "authorizationServerId4195", + "apiid4597", + "swaggerApiId9150", + "authName3731", + "oauth2scope4935", + "clientid2961", + "apiname782", + "apidescription4888", + "header2889", + "query8227", + "oauth2scope7480" ] }, "Variables": { @@ -874,7 +874,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } 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 7d034279bfd2..684dcb8dfd60 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "455ea64d-4df9-4b16-be0a-2bf98cfa29e8" + "0cb14a19-28a2-4d2c-87b4-687a3bd8b9af" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43594d03-2817-44dd-aad2-e4db5777b351", - "d6cc025a-70f7-4288-8dd1-f763af75ff70" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5ff62d22-66bc-4682-a610-4902befd7fa1", + "036e3abb-130c-406b-9200-045cbfbabcb6" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "60e96e68-d62c-4142-b711-1e154b630fd9" + "5b83b848-5366-4ae4-9126-1e6818c63590" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021104Z:60e96e68-d62c-4142-b711-1e154b630fd9" + "WESTUS:20200207T010300Z:5b83b848-5366-4ae4-9126-1e6818c63590" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:03 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71bf327e-7687-4e61-88f4-d0a7ec7fd90d" + "1fc16e36-4a47-4af6-83d3-6871d6acdf2e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "608935ff-e4da-4337-b970-2c297e5fc96d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "62c61efb-9cee-40be-8832-d8db9a749eb2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "926784b1-cc9d-4c2b-9a85-ef93dcc7fd59" + "e9ec30b0-9f67-44b4-9594-0e2e936bc61a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021104Z:926784b1-cc9d-4c2b-9a85-ef93dcc7fd59" + "WESTUS:20200207T010301Z:e9ec30b0-9f67-44b4-9594-0e2e936bc61a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:03 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f7c1efe-937e-43ca-9355-1a394ac5f3de" + "a9e5db65-9f7f-47c6-8374-27f915fdac16" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9403945e-1558-428f-8455-13c1e7fc71cf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a5a0a3ac-36fe-4317-99f3-1afa4debe5ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "6ae6c0e1-98f5-4f57-a483-c9c024e47e82" + "d08c6757-ade1-4306-8c09-c1d996f3ec23" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021104Z:6ae6c0e1-98f5-4f57-a483-c9c024e47e82" + "WESTUS:20200207T010301Z:d08c6757-ade1-4306-8c09-c1d996f3ec23" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:03 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,64 +199,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3879da54-098b-454c-9bfc-1ac838ec584f" + "930791f0-b508-4261-b4d9-6f1596b967c3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAb1s=\"" + "\"AAAAAAAACRs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d6b9738-3129-423f-8635-f30b8e1185af" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2f328a18-4214-4db7-b4ce-9f5dafc3dbac" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "cfa8380b-80ca-43c4-b531-874c21dfab01" + "c56f4149-7b4f-41fe-99ba-becfbf349ef7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021104Z:cfa8380b-80ca-43c4-b531-874c21dfab01" + "WESTUS:20200207T010301Z:c56f4149-7b4f-41fe-99ba-becfbf349ef7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:04 GMT" - ], "Content-Length": [ - "713" + "721" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,70 +265,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId9105?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQ5MTA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authorizationServerId8114?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhvcml6YXRpb25TZXJ2ZXJJZDgxMTQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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\": \"oauth2scope6785\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName5050\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\"\r\n ],\r\n \"clientId\": \"clientid5208\"\r\n }\r\n}", + "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\": \"oauth2scope5051\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName367\",\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\": \"clientid4545\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5b80c8ea-5335-466a-b82a-a6e504d12159" + "d15aab48-5408-4eb3-9c4c-e86767bd6936" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "546" + "545" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZM=\"" + "\"AAAAAAAACvA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98afcabc-7714-4ffc-aed7-8441719b8298" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "31d535a2-5152-4408-bf12-9e01a6a1d506" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "6d08cbb3-aa4f-486d-9f14-200eebb78b4e" + "03a21f11-c20a-48bd-85b7-0ea4311f8342" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021105Z:6d08cbb3-aa4f-486d-9f14-200eebb78b4e" + "WESTUS:20200207T010301Z:03a21f11-c20a-48bd-85b7-0ea4311f8342" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:04 GMT" - ], "Content-Length": [ - "1086" + "1066" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,26 +337,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId9105\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId9105\",\r\n \"properties\": {\r\n \"displayName\": \"authName5050\",\r\n \"description\": null,\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": null,\r\n \"tokenBodyParameters\": null,\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"oauth2scope6785\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid5208\",\r\n \"clientSecret\": null,\r\n \"resourceOwnerUsername\": null,\r\n \"resourceOwnerPassword\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authorizationServerId8114\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId8114\",\r\n \"properties\": {\r\n \"displayName\": \"authName367\",\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\": \"oauth2scope5051\",\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\": \"clientid4545\",\r\n \"resourceOwnerUsername\": null,\r\n \"resourceOwnerPassword\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription3785\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId9105\",\r\n \"scope\": \"oauth2scope8999\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"displayName\": \"apiname4512\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription1989\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId8114\",\r\n \"scope\": \"oauth2scope6739\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"displayName\": \"apiname6383\",\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": [ - "cd03fed0-4bbf-40da-8c68-37c5e19ff2d0" + "38d34863-7d6b-4953-87fb-b80731679063" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,38 +369,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZQ=\"" + "\"AAAAAAAACvE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "768f05ba-f1c7-4e3a-94cf-2562702e841c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "97cd2edd-a1be-4dfd-a835-11e3220d25a5" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "99de0172-9f9a-4296-bf1c-357b0320adf7" + "d2680fcf-5074-490c-b5bd-601d7fb872a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021106Z:99de0172-9f9a-4296-bf1c-357b0320adf7" + "WESTUS:20200207T010302Z:d2680fcf-5074-490c-b5bd-601d7fb872a6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:05 GMT" - ], "Content-Length": [ - "841" + "849" ], "Content-Type": [ "application/json; charset=utf-8" @@ -409,58 +409,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid3399\",\r\n \"properties\": {\r\n \"displayName\": \"apiname4512\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3785\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId9105\",\r\n \"scope\": \"oauth2scope8999\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid2820\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6383\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1989\",\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\": \"authorizationServerId8114\",\r\n \"scope\": \"oauth2scope6739\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:32 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZQ=\"" + "\"AAAAAAAACvE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "830d0e49-f055-4423-bb18-4cbb14d5582f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e82718fa-ad2d-4834-89dd-9ae347e77d33" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-correlation-request-id": [ - "2fdc01f9-67cf-4d69-8d41-44bf64d6a762" + "71faae54-8748-4634-b4b2-7125cbdafb9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021137Z:2fdc01f9-67cf-4d69-8d41-44bf64d6a762" + "WESTUS:20200207T010332Z:71faae54-8748-4634-b4b2-7125cbdafb9e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:36 GMT" - ], "Content-Length": [ - "841" + "849" ], "Content-Type": [ "application/json; charset=utf-8" @@ -469,64 +469,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid3399\",\r\n \"properties\": {\r\n \"displayName\": \"apiname4512\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3785\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId9105\",\r\n \"scope\": \"oauth2scope8999\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid2820\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6383\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1989\",\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\": \"authorizationServerId8114\",\r\n \"scope\": \"oauth2scope6739\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7761cd92-9351-4e6e-8a72-4aa46a24ce20" + "3a55579e-8352-470f-ae37-c3af10e10c77" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:32 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZQ=\"" + "\"AAAAAAAACvE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28e3913e-8b45-4446-9bb8-aa637cc41846" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c34cee5c-e19c-472f-bce0-023ba57d6c6b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-correlation-request-id": [ - "d352b719-2602-4e04-a9ce-c88ab6f48037" + "21bc98a6-7f25-46f3-b8a5-e08c4b2c6826" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021137Z:d352b719-2602-4e04-a9ce-c88ab6f48037" + "WESTUS:20200207T010333Z:21bc98a6-7f25-46f3-b8a5-e08c4b2c6826" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:37 GMT" - ], "Content-Length": [ - "841" + "849" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,64 +535,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid3399\",\r\n \"properties\": {\r\n \"displayName\": \"apiname4512\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3785\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId9105\",\r\n \"scope\": \"oauth2scope8999\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid2820\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6383\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1989\",\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\": \"authorizationServerId8114\",\r\n \"scope\": \"oauth2scope6739\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63de3071-d504-432a-9eb2-222080792da8" + "02a81d9c-9ffb-4a77-9157-4cd1e8b18157" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:38 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZg=\"" + "\"AAAAAAAACvU=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21694cd6-9d37-48dc-a9ce-2cc3d72d5049" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9b3b8c52-c49c-4cfe-aeec-e195a52464a2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-correlation-request-id": [ - "fded6846-711c-4886-b190-35f84e601f29" + "0bd3b1ea-c6a4-4f23-8a3e-30cd7f30a16f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021137Z:fded6846-711c-4886-b190-35f84e601f29" + "WESTUS:20200207T010338Z:0bd3b1ea-c6a4-4f23-8a3e-30cd7f30a16f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:37 GMT" - ], "Content-Length": [ - "748" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -601,59 +601,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid3399\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname2889\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription108\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath4462\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid2820\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname5850\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription967\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath7321\",\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\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d55a5ce1-2411-411d-a732-ace43c9dd98a" + "960b9dab-4309-4412-86b2-02209cf90287" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe9529a7-e7b1-4f66-af92-406b7414c8d8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5101e2d8-8fe7-4d70-9db5-e61e014f823c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11985" ], "x-ms-correlation-request-id": [ - "2f835186-2f21-4aa3-93d1-513a22e52f0b" + "136da778-7fe6-49ae-8dca-d76eeb921d29" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021209Z:2f835186-2f21-4aa3-93d1-513a22e52f0b" + "WESTUS:20200207T010410Z:136da778-7fe6-49ae-8dca-d76eeb921d29" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:09 GMT" - ], "Content-Length": [ "79" ], @@ -668,58 +668,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67a71017-664b-45d2-884c-b592fdd8959f" + "a4f775ac-3d67-4a54-80a6-c7abb6fab9ba" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:32 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZQ=\"" + "\"AAAAAAAACvE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11c32c2b-7efd-4a12-b719-20dbb555e560" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0f6ae30f-eedf-4fee-8e0b-67e0f937adf4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-correlation-request-id": [ - "e110e380-c68d-4479-af54-ac6637c8e0fb" + "61aed973-d75a-4fdb-8917-8b72c20a8314" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021137Z:e110e380-c68d-4479-af54-ac6637c8e0fb" + "WESTUS:20200207T010333Z:61aed973-d75a-4fdb-8917-8b72c20a8314" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:37 GMT" - ], "Content-Length": [ "0" ], @@ -731,25 +731,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription108\",\r\n \"authenticationSettings\": {},\r\n \"displayName\": \"patchedname2889\",\r\n \"path\": \"patchedPath4462\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription967\",\r\n \"authenticationSettings\": {},\r\n \"displayName\": \"patchedname5850\",\r\n \"path\": \"patchedPath7321\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d3cbb493-6ed9-472e-8c5d-2d6855133f4a" + "0e39f1a3-2d27-4ef8-8530-8760ef53ce70" ], "If-Match": [ - "\"AAAAAAAAcZQ=\"" + "\"AAAAAAAACvE=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,33 +762,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:38 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6eb32062-80c1-4076-96c1-0130f379fe80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "253908bc-1003-4476-a135-4d9f8f4082ff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "b42795f0-42c4-4067-9a6f-6f2fd57cf8ad" + "05a50e67-2222-491c-bc95-9ece2a7ee8c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021137Z:b42795f0-42c4-4067-9a6f-6f2fd57cf8ad" + "WESTUS:20200207T010338Z:05a50e67-2222-491c-bc95-9ece2a7ee8c8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:37 GMT" - ], "Expires": [ "-1" ] @@ -797,22 +797,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId549?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU0OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1077?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkMTA3Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName8322\",\r\n \"metadataEndpoint\": \"https://provider4888.endpoint4150\",\r\n \"clientId\": \"clientId3533\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName2616\",\r\n \"metadataEndpoint\": \"https://provider1553.endpoint5800\",\r\n \"clientId\": \"clientId9295\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fdde4d33-8ff7-4c57-a3f3-43cde2f75416" + "cb1a54c2-4854-4aee-af0b-0d970c411fb8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,38 +825,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:38 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZw=\"" + "\"AAAAAAAACvk=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bf11538-c280-48a2-b4e8-8a1f8321c109" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a93a0565-a1e7-4e7d-87f3-a93f0c1fce37" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "b409eea3-4fd3-407e-8a69-39e030320e95" + "3e17e770-ccfd-4f45-b911-58cf63bc1c0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021138Z:b409eea3-4fd3-407e-8a69-39e030320e95" + "WESTUS:20200207T010339Z:3e17e770-ccfd-4f45-b911-58cf63bc1c0c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:38 GMT" - ], "Content-Length": [ - "497" + "480" ], "Content-Type": [ "application/json; charset=utf-8" @@ -865,70 +865,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId549\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId549\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName8322\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider4888.endpoint4150\",\r\n \"clientId\": \"clientId3533\",\r\n \"clientSecret\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1077\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1077\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2616\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider1553.endpoint5800\",\r\n \"clientId\": \"clientId9295\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvb3BlbkFwaWlkNTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription3954\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"openId549\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"displayName\": \"apiname1248\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription6818\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"openId1077\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"displayName\": \"apiname3255\",\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": [ - "76d8f8a3-5574-47d7-b290-e9d6c2ae1b5c" + "0b19faa5-0722-4499-937f-e9864f42b833" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "553" + "554" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:03:39 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZ0=\"" + "\"AAAAAAAACvo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4769b6e3-d349-4e5d-b37e-8d6a4e8d199f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d05f5bb4-b408-4a7b-8351-af6961b37e71" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "9c8dcf31-fbad-400d-b39c-f5fe875cd568" + "3395eb93-a9c7-422e-8ad5-f0f44f9faa45" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021138Z:9c8dcf31-fbad-400d-b39c-f5fe875cd568" + "WESTUS:20200207T010339Z:3395eb93-a9c7-422e-8ad5-f0f44f9faa45" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:11:38 GMT" - ], "Content-Length": [ - "881" + "886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -937,58 +937,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1142\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1248\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3954\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId549\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid52\",\r\n \"properties\": {\r\n \"displayName\": \"apiname3255\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription6818\",\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\": \"openId1077\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvb3BlbkFwaWlkNTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:08 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZ0=\"" + "\"AAAAAAAACvo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5dfc941-8c5b-41c1-9e4f-a6eb5e050606" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "358c6f2d-fb69-4c34-bdc9-7dcbf1b5456c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11989" ], "x-ms-correlation-request-id": [ - "140caabc-d066-4e94-821e-cb0e5784ea94" + "52cb44f9-feb4-4496-9316-e255ced1395b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021208Z:140caabc-d066-4e94-821e-cb0e5784ea94" + "WESTUS:20200207T010409Z:52cb44f9-feb4-4496-9316-e255ced1395b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:08 GMT" - ], "Content-Length": [ - "881" + "886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -997,64 +997,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1142\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1248\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3954\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId549\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid52\",\r\n \"properties\": {\r\n \"displayName\": \"apiname3255\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription6818\",\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\": \"openId1077\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvb3BlbkFwaWlkNTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a19a7952-8203-489e-8c3a-26941295660d" + "5367db9a-84b9-48b3-bfb5-3602d8725817" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcZ0=\"" + "\"AAAAAAAACvo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f8438a4-293d-4c7f-84d3-79866638d6a7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e7a1f049-00c4-41fa-a7c2-8f76a301dc42" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11988" ], "x-ms-correlation-request-id": [ - "d7adb707-9ffb-4cfa-ab3d-a929db98646c" + "61c8e010-1c44-478a-a254-a8489994595d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021209Z:d7adb707-9ffb-4cfa-ab3d-a929db98646c" + "WESTUS:20200207T010409Z:61c8e010-1c44-478a-a254-a8489994595d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:08 GMT" - ], "Content-Length": [ - "881" + "886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1063,59 +1063,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1142\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1248\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3954\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId549\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid52\",\r\n \"properties\": {\r\n \"displayName\": \"apiname3255\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription6818\",\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\": \"openId1077\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3211\",\r\n \"query\": \"query1008\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvb3BlbkFwaWlkNTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e3e3c6e-7c17-497c-8923-24d293e2e6a9" + "2eaf54a6-8bba-47cb-93d7-52e6fb08b424" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ffe0088-ea2e-4218-8ff3-7d0f0f499459" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6e43eed2-c346-4518-b0fd-5afe74fe805a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11984" ], "x-ms-correlation-request-id": [ - "2a73a8b9-e208-44d8-b900-64e0311cb0cf" + "92f4e55c-6b31-45af-9058-891fc1eec209" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021210Z:2a73a8b9-e208-44d8-b900-64e0311cb0cf" + "WESTUS:20200207T010410Z:92f4e55c-6b31-45af-9058-891fc1eec209" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:09 GMT" - ], "Content-Length": [ "79" ], @@ -1130,57 +1130,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c016a507-717a-4b2b-8fdc-00a1d341866c" + "8c0081fb-b8b2-4f21-817e-a849e685a15b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ae1a507-8cbe-448b-8453-8050a70fd4b4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "73ecb71f-6ae0-45a6-aecb-856f79713b52" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11987" ], "x-ms-correlation-request-id": [ - "7c7068d5-0032-4103-8cf8-ab345b2f92fc" + "95c3a1cc-8ac0-430b-bc60-400473b583d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021209Z:7c7068d5-0032-4103-8cf8-ab345b2f92fc" + "WESTUS:20200207T010410Z:95c3a1cc-8ac0-430b-bc60-400473b583d8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:08 GMT" - ], "Content-Length": [ - "981" + "1008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1189,61 +1189,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1142\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1248\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3954\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid52\",\r\n \"properties\": {\r\n \"displayName\": \"apiname3255\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription6818\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?%24top=1&api-version=2019-01-01&%24skip=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDEmJTI0c2tpcD0x", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/JTI0dG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMSYlMjRza2lwPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "805c18d6-3737-47ab-83fd-bd975ecfdf54" + "e77f015d-7061-404c-89d2-fbb3dd9867f7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3bb96df-c726-4ad2-a5f6-c5cd2ed63b82" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "98c370ff-4a11-4d24-a517-2ddb50ad2335" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11986" ], "x-ms-correlation-request-id": [ - "f80ed86e-b0cf-4516-8a3b-4fa1d639775d" + "67026e31-6b7d-4498-8815-a02950eb629f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021209Z:f80ed86e-b0cf-4516-8a3b-4fa1d639775d" + "WESTUS:20200207T010410Z:67026e31-6b7d-4498-8815-a02950eb629f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:09 GMT" - ], "Content-Length": [ - "919" + "950" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1252,125 +1252,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?%24top=1&api-version=2019-01-01&%24skip=2\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?%24top=1&api-version=2019-01-01&%24skip=2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c1e182c-9b2b-45b1-acbb-dda64a1559a8" + "5116faeb-b94b-455c-8689-2b251643e7d4" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7d5ff77-4da0-412d-92a4-09fe28343583" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "115c9565-c806-4327-b7d5-ea55ea8a1362" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "5a57a55c-d3c0-4e33-8506-38d830df113f" + "d15ef5d6-1f94-414f-98be-1e30ef228f12" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021209Z:5a57a55c-d3c0-4e33-8506-38d830df113f" + "WESTUS:20200207T010410Z:d15ef5d6-1f94-414f-98be-1e30ef228f12" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:09 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/apiid2820?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvYXBpaWQyODIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4263cc7b-979f-4843-8ba9-090b46f985c1" + "f7c9b531-d59d-4042-a5cc-9d56701221a0" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a3610b0-f640-4fb9-9e73-370961156289" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "13a532ec-21dc-4f20-b5dd-a44e67c048d8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "3d945bfb-fc99-42ab-8bf9-b62555d8eceb" + "6328c5c0-b01f-496a-ae27-8f1cc01e7a79" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021210Z:3d945bfb-fc99-42ab-8bf9-b62555d8eceb" + "WESTUS:20200207T010410Z:6328c5c0-b01f-496a-ae27-8f1cc01e7a79" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:10 GMT" - ], "Expires": [ "-1" ] @@ -1379,121 +1379,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvb3BlbkFwaWlkNTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f30be32-88e5-43ad-899f-d02f53ee3e2a" + "8c5f489e-1450-4802-b868-7ca14ee2171f" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e29203be-d6e2-43e3-b9b2-b15c44bbf8b4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "674e0b8d-842b-4f44-9a75-e1b412b86379" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "59f7af2d-b811-4c2c-91fa-c9f9de3e1e71" + "6bd554a0-04ea-4050-8d16-f6d1c65da306" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021210Z:59f7af2d-b811-4c2c-91fa-c9f9de3e1e71" + "WESTUS:20200207T010410Z:6bd554a0-04ea-4050-8d16-f6d1c65da306" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:09 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/openApiid52?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvb3BlbkFwaWlkNTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eafc73b3-0583-49ae-a631-7d8a28bb7bf6" + "f3072414-4c4a-457a-8e0a-e131aa0643b9" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ea425dc-a5c8-42c9-bce3-20312ad7c1c1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f74dcaff-50b2-43c0-9295-f8f4d858ac04" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14995" ], "x-ms-correlation-request-id": [ - "9d3924cd-a13a-4059-aef8-f0bd1a077c2f" + "46355bdf-6217-4bcb-8577-223467d621b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021210Z:9d3924cd-a13a-4059-aef8-f0bd1a077c2f" + "WESTUS:20200207T010411Z:46355bdf-6217-4bcb-8577-223467d621b9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:10 GMT" - ], "Expires": [ "-1" ] @@ -1502,126 +1502,126 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId9105?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQ5MTA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authorizationServerId8114?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhvcml6YXRpb25TZXJ2ZXJJZDgxMTQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3afea03a-99b6-4a7b-9e0b-cd08c19e2550" + "96a949b8-1866-48e7-9441-f002b74fc954" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc43f777-26d1-4329-b2ef-0c43f9b6de1b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "820bf3ab-cbfa-4a4c-bbb9-f4a268fdada5" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14996" ], "x-ms-correlation-request-id": [ - "2e005bec-e82d-4a33-866e-891c23f81112" + "6ae68919-3ced-4432-b28b-e27d887ec739" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021210Z:2e005bec-e82d-4a33-866e-891c23f81112" + "WESTUS:20200207T010411Z:6ae68919-3ced-4432-b28b-e27d887ec739" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:10 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId549?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU0OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1077?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkMTA3Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e3b6f70-14c1-4f25-ad74-e7c58996ef92" + "b76b679f-e127-473c-8ffd-48a1fab00ca0" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "921a8361-da38-495e-b79f-6d00b5f4b39b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7dad5347-6ab4-4321-a7e2-2edda5bddcf9" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14992" + "14994" ], "x-ms-correlation-request-id": [ - "89459161-1a23-4779-ad3f-45a6d5cd2654" + "73ba5fe9-8751-4384-af0c-08d535ca17b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021211Z:89459161-1a23-4779-ad3f-45a6d5cd2654" + "WESTUS:20200207T010411Z:73ba5fe9-8751-4384-af0c-08d535ca17b9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:12:10 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -1630,30 +1630,30 @@ ], "Names": { "CreateListUpdateDelete": [ - "authorizationServerId9105", - "apiid3399", - "openApiid1142", - "openId549", - "authName5050", - "oauth2scope6785", - "clientid5208", - "apiname4512", - "apidescription3785", - "header5282", - "query7206", - "oauth2scope8999", - "patchedname2889", - "patchedDescription108", - "patchedPath4462", - "openIdName8322", - "clientId3533", - "apiname1248", - "apidescription3954", - "oauth2scope7820" + "authorizationServerId8114", + "apiid2820", + "openApiid52", + "openId1077", + "authName367", + "oauth2scope5051", + "clientid4545", + "apiname6383", + "apidescription1989", + "header3211", + "query1008", + "oauth2scope6739", + "patchedname5850", + "patchedDescription967", + "patchedPath7321", + "openIdName2616", + "clientId9295", + "apiname3255", + "apidescription6818", + "oauth2scope5879" ], "GetOpenIdMetadataEndpointUrl": [ - "provider4888", - "endpoint4150" + "provider1553", + "endpoint5800" ] }, "Variables": { @@ -1661,7 +1661,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiVersionSetTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiVersionSetTests/CreateListUpdateDelete.json index 086cc3ff2646..0e4d71be9a56 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiVersionSetTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiVersionSetTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b076a0a5-805f-499d-aa1b-05c85316b6fb" + "28f050d1-106c-4752-b3ca-5c0a8e5042fd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:59 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9675921e-0f22-427b-9c3c-699de5638249", - "b52197b7-a5f3-4f4e-a2a6-bc8be7872b71" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2a2a1be7-829e-4b0d-9fec-8feefcfefd80", + "c46c4869-5fea-4893-b517-1f4f8d227416" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "86061fd4-b400-46b3-a208-3f8342375551" + "d0c9c901-be93-4b2c-9a22-9b01f8b9f669" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020935Z:86061fd4-b400-46b3-a208-3f8342375551" + "WESTUS:20200207T010600Z:d0c9c901-be93-4b2c-9a22-9b01f8b9f669" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:35 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92974a15-caff-4340-8444-da1d124edd30" + "f74691f9-0059-4615-ba1f-f20b1b7d9dfe" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:59 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1395184c-d92d-4cf1-8c0e-b00fc72b014f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "75aff8ff-3cea-4c53-97b7-07e78d2ce320" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11983" ], "x-ms-correlation-request-id": [ - "78c8272d-768c-4744-8efe-803405eb070e" + "4e38d488-3209-44e5-a5de-df2a3dab821e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020935Z:78c8272d-768c-4744-8efe-803405eb070e" + "WESTUS:20200207T010600Z:4e38d488-3209-44e5-a5de-df2a3dab821e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:35 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ff0593f-297e-4ed5-bded-afe225790800" + "ddebb6a9-55b5-4f6f-a81e-cdceca1f091f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3e6e674-7b9d-41de-b292-800475991cdb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5d105ece-f2ef-45cd-92ef-e281939a8179" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11982" ], "x-ms-correlation-request-id": [ - "05b3184c-dec4-40eb-ba33-58d34f2c88e6" + "0e49eed0-88da-44c4-a4a1-25d4e9a5d1c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020935Z:05b3184c-dec4-40eb-ba33-58d34f2c88e6" + "WESTUS:20200207T010601Z:0e49eed0-88da-44c4-a4a1-25d4e9a5d1c6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:35 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,70 +199,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzL2FwaXZlcnNpb25zZXRpZDMwNTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"versionsetdescript2628\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\",\r\n \"displayName\": \"versionset189\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"versionsetdescript2931\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\",\r\n \"displayName\": \"versionset9268\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "98be8878-e8f8-409b-983c-3f69122373c6" + "0ba1e1ba-4495-4898-afe1-2341bbcbe5c1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "191" + "192" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcS0=\"" + "\"AAAAAAAACzs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37405215-7592-49cd-b9c6-e92d9bc3d9a0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5ed99bb1-df66-4052-a7ee-c7f267059ecc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "bab68c5b-db59-46c9-891a-a4a36a882156" + "f38e24f3-fb55-45df-a17c-ac2373889044" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020936Z:bab68c5b-db59-46c9-891a-a4a36a882156" + "WESTUS:20200207T010601Z:f38e24f3-fb55-45df-a17c-ac2373889044" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:35 GMT" - ], "Content-Length": [ - "510" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,62 +271,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"apiversionsetid4456\",\r\n \"properties\": {\r\n \"displayName\": \"versionset189\",\r\n \"description\": \"versionsetdescript2628\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"apiversionsetid3055\",\r\n \"properties\": {\r\n \"displayName\": \"versionset9268\",\r\n \"description\": \"versionsetdescript2931\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzL2FwaXZlcnNpb25zZXRpZDMwNTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5999190-9e9c-4523-a1e6-422d4bc13a68" + "bb817f06-841c-4872-bbe2-ab6ea5dcdc7d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcS0=\"" + "\"AAAAAAAACzs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e117e00-5d95-4183-90e8-8782c5795528" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9a967aa3-ee8e-4c73-ba3c-b537c0fe7548" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11981" ], "x-ms-correlation-request-id": [ - "c6b63453-8514-4b3d-b2da-cf0e67def47e" + "47a1c7c9-f5ca-4a30-bf22-aa8caa3a6ac8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020936Z:c6b63453-8514-4b3d-b2da-cf0e67def47e" + "WESTUS:20200207T010601Z:47a1c7c9-f5ca-4a30-bf22-aa8caa3a6ac8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:35 GMT" - ], "Content-Length": [ "0" ], @@ -338,58 +338,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzL2FwaXZlcnNpb25zZXRpZDMwNTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbc15faf-9565-4bcc-912d-34e599aad933" + "d8d3c707-967c-4138-a947-93548e4cfe5e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcTA=\"" + "\"AAAAAAAACz4=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4404e3a0-e015-4b3e-b086-a3ff60d4498c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7ea17df7-108c-4a6a-b1bb-27dd31721608" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11979" ], "x-ms-correlation-request-id": [ - "8bece617-3aca-4118-9088-83f527b5c9cd" + "a0a2a3e1-757c-4e4e-8290-610863306e20" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020936Z:8bece617-3aca-4118-9088-83f527b5c9cd" + "WESTUS:20200207T010602Z:a0a2a3e1-757c-4e4e-8290-610863306e20" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:36 GMT" - ], "Content-Length": [ "0" ], @@ -401,25 +401,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzL2FwaXZlcnNpb25zZXRpZDMwNTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"versionQueryName\": \"x-ms-sdk-version\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00d4b357-8ce5-4a0d-92a3-f65d519f46df" + "b3aa692f-c767-4645-80be-5a8a9d768fe8" ], "If-Match": [ - "\"AAAAAAAAcS0=\"" + "\"AAAAAAAACzs=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,33 +432,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a261e2a0-118c-4988-b7a2-973e352b3116" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a29c39bf-490f-41d8-b2d9-d252fad7eb17" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-correlation-request-id": [ - "fc43f54d-b9e0-46a8-9a35-cbe7a73d05d9" + "f3c101f1-17ac-441e-b9b3-6dde07ce2b22" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020936Z:fc43f54d-b9e0-46a8-9a35-cbe7a73d05d9" + "WESTUS:20200207T010602Z:f3c101f1-17ac-441e-b9b3-6dde07ce2b22" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:36 GMT" - ], "Expires": [ "-1" ] @@ -467,60 +467,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzL2FwaXZlcnNpb25zZXRpZDMwNTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a80ec6-efd4-41cb-8e87-e11b8ddbe261" + "cdccdca7-6d16-4a06-8888-00237e4dd4e7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcTA=\"" + "\"AAAAAAAACz4=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83cc1a27-6959-4e74-b206-138d7cb88aa5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4fbaee4d-a0b7-4620-856f-ef8d8d3f9a47" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11980" ], "x-ms-correlation-request-id": [ - "7e2a46ed-882b-43d0-a1f2-06a93914b112" + "cba475bd-f005-464b-b47e-9956470f8e6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020936Z:7e2a46ed-882b-43d0-a1f2-06a93914b112" + "WESTUS:20200207T010602Z:cba475bd-f005-464b-b47e-9956470f8e6c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:36 GMT" - ], "Content-Length": [ - "523" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"apiversionsetid4456\",\r\n \"properties\": {\r\n \"displayName\": \"versionset189\",\r\n \"description\": \"versionsetdescript2628\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"x-ms-sdk-version\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"apiversionsetid3055\",\r\n \"properties\": {\r\n \"displayName\": \"versionset9268\",\r\n \"description\": \"versionsetdescript2931\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"x-ms-sdk-version\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzL2FwaXZlcnNpb25zZXRpZDMwNTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4108725-9cc2-4028-9055-94ec35f47aa8" + "a62fafb7-a7da-4a39-b66c-95a8beeb2bc9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38d7df15-a324-477b-b457-2a721ef4758f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "32285323-f664-4dad-9b18-8c09ce09ff61" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11978" ], "x-ms-correlation-request-id": [ - "c98ea29d-d2d8-44ae-a525-4d10a81bf2b5" + "a9694a03-c6a6-434a-9ffd-c143bbb363ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020937Z:c98ea29d-d2d8-44ae-a525-4d10a81bf2b5" + "WESTUS:20200207T010602Z:a9694a03-c6a6-434a-9ffd-c143bbb363ed" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:36 GMT" - ], "Content-Length": [ "91" ], @@ -596,121 +596,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzL2FwaXZlcnNpb25zZXRpZDMwNTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b62cf8ee-de6d-43e5-82dd-4f813640509f" + "bff5d468-37a3-42a7-abf6-5c51d29ab84c" ], "If-Match": [ - "\"AAAAAAAAcTA=\"" + "\"AAAAAAAACz4=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9f7908d-c529-4b81-a68a-e39646158171" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "26868d2f-8fdd-471c-9903-fda86dc802c7" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "0c73d973-05cc-424f-9b2f-58830758a403" + "0f3473e9-6e71-4244-bcc6-bccfbbb3e628" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020937Z:0c73d973-05cc-424f-9b2f-58830758a403" + "WESTUS:20200207T010602Z:0f3473e9-6e71-4244-bcc6-bccfbbb3e628" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:36 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apiVersionSets/apiversionsetid3055?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaVZlcnNpb25TZXRzL2FwaXZlcnNpb25zZXRpZDMwNTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f5f9054-b7c4-482b-8194-36da7a6b21c7" + "d6999db8-fd6d-484c-9548-f26fcd19551f" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ce2306d-1ede-4018-aeb9-e0dfd23a2a51" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1239aaf9-5f28-463d-9754-37aa6e6c576c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14998" ], "x-ms-correlation-request-id": [ - "86c6a1ad-344d-4687-aaca-cca9ae428dce" + "01db827e-6ddb-401e-bd85-2af820f379c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020937Z:86c6a1ad-344d-4687-aaca-cca9ae428dce" + "WESTUS:20200207T010602Z:01db827e-6ddb-401e-bd85-2af820f379c5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:37 GMT" - ], "Expires": [ "-1" ] @@ -721,9 +721,9 @@ ], "Names": { "CreateListUpdateDelete": [ - "apiversionsetid4456", - "versionset189", - "versionsetdescript2628" + "apiversionsetid3055", + "versionset9268", + "versionsetdescript2931" ] }, "Variables": { @@ -731,7 +731,7 @@ "TestCertificate": "MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } 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 ff23c1ed5f03..b52943d7c249 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9dbdfbba-da6c-4b3a-9900-cc8f57526a7d" + "f1e8cb3e-166f-4c2a-8404-76aa5235ceca" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:22 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a5e32bf-30a3-45ee-b17c-a5fca8633f27", - "9b60ae91-fea7-415d-a25b-4214533aba5e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "638d3e06-9369-4627-9079-b2b6e6aaecbf", + "d807ae57-125c-43f7-8089-5ba8aace950b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "6c84752a-128e-4ee7-ac2f-9aaa34abc018" + "c5d3d9d8-3793-4caa-81f2-858a30172a0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021624Z:6c84752a-128e-4ee7-ac2f-9aaa34abc018" + "WESTUS:20200207T010023Z:c5d3d9d8-3793-4caa-81f2-858a30172a0c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:24 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef5ba9b8-33f2-4182-b7ab-c93348f69c03" + "b601b464-89f2-4595-9fe1-85100eed77f0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:23 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc3c5b20-8775-41a2-a233-a7f1a9c68f05" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "aee1bf02-707f-43cf-b18f-8f7407f460f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "a4690134-181e-4cda-b568-87316286a5ef" + "6f95cba2-c395-4669-9edd-03b149b9e597" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021624Z:a4690134-181e-4cda-b568-87316286a5ef" + "WESTUS:20200207T010023Z:6f95cba2-c395-4669-9edd-03b149b9e597" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:24 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a169936-cd03-4eee-a9b4-62fc0a700b4e" + "d3fa67b2-6787-490c-b73c-0e63b2becfef" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:23 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69e01448-813e-457f-8199-d63f047fa351" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c43ea9f1-27fb-4d2b-9f62-60e76b7b4e24" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "821257c4-9fc6-4b31-b086-64aff8d8be79" + "03fa28f1-6bc9-44d0-8d1a-e9b0f992b674" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021624Z:821257c4-9fc6-4b31-b086-64aff8d8be79" + "WESTUS:20200207T010024Z:03fa28f1-6bc9-44d0-8d1a-e9b0f992b674" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:24 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7027f4c-7c12-4621-beaa-68979ed2ba04" + "57af07ad-c885-4d4a-b8ae-248c8b154970" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "593e6023-e2e5-4e86-b53d-23c014e3b4bb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c5d53fcb-3ce8-49e2-a0a3-1088d999f1af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "bfaabe3c-a23d-4cbe-8e0e-84b4c797577f" + "cb86d870-389d-4d75-9909-e90d74f6dcbc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021625Z:bfaabe3c-a23d-4cbe-8e0e-84b4c797577f" + "WESTUS:20200207T010025Z:cb86d870-389d-4d75-9909-e90d74f6dcbc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:25 GMT" - ], "Content-Length": [ - "1467" + "1490" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,26 +262,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6876\",\r\n \"properties\": {\r\n \"displayName\": \"authName823\",\r\n \"description\": \"authdescription9674\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid2297\",\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid8904\",\r\n \"properties\": {\r\n \"displayName\": \"authName5683\",\r\n \"description\": \"authdescription2684\",\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\": \"tokenname7170\",\r\n \"value\": \"tokenvalue717\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope2608\",\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\": \"clientid8685\",\r\n \"clientSecret\": \"authclientsecret3988\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6463\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2655\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhzaWQ4OTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"authdescription9674\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\",\r\n \"displayName\": \"authName823\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"clientId\": \"clientid2297\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"authdescription2684\",\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\": \"tokenname7170\",\r\n \"value\": \"tokenvalue717\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope2608\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientSecret\": \"authclientsecret3988\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6463\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2655\",\r\n \"displayName\": \"authName5683\",\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\": \"clientid8685\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6fca3b5f-057f-4a40-9987-216520bbafbf" + "32fa2744-d76b-4232-99b5-e4b8758fd25d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,38 +294,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:24 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcis=\"" + "\"AAAAAAAACko=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f34d4900-e0c3-4d30-a176-8b009a71e11a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b5c3989e-19f9-4661-8bd0-80ea2bb6e8b5" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "76070156-4729-400f-a5af-aec578d3635c" + "3135c1d8-1308-4d7d-9f01-d497d2019541" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021625Z:76070156-4729-400f-a5af-aec578d3635c" + "WESTUS:20200207T010025Z:3135c1d8-1308-4d7d-9f01-d497d2019541" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:25 GMT" - ], "Content-Length": [ - "1282" + "1290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,64 +334,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6876\",\r\n \"properties\": {\r\n \"displayName\": \"authName823\",\r\n \"description\": \"authdescription9674\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid2297\",\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid8904\",\r\n \"properties\": {\r\n \"displayName\": \"authName5683\",\r\n \"description\": \"authdescription2684\",\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\": \"tokenname7170\",\r\n \"value\": \"tokenvalue717\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope2608\",\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\": \"clientid8685\",\r\n \"clientSecret\": \"authclientsecret3988\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6463\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2655\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhzaWQ4OTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90faabe4-08f1-4657-92d5-d640e02a71b3" + "e0d0ab6a-89dd-4f79-b57e-fcd28ea47eb1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:24 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcis=\"" + "\"AAAAAAAACko=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36259034-31e9-438a-9d1b-d758dd60dd8d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2516ea78-64f5-429b-8b69-a51703008b6b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "5aa0ae0f-4ba1-44f6-8df5-6de6f0d3110e" + "66385443-9c77-47fa-884e-0925fe260c3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021625Z:5aa0ae0f-4ba1-44f6-8df5-6de6f0d3110e" + "WESTUS:20200207T010025Z:66385443-9c77-47fa-884e-0925fe260c3e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:25 GMT" - ], "Content-Length": [ - "1282" + "1290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,64 +400,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6876\",\r\n \"properties\": {\r\n \"displayName\": \"authName823\",\r\n \"description\": \"authdescription9674\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid2297\",\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid8904\",\r\n \"properties\": {\r\n \"displayName\": \"authName5683\",\r\n \"description\": \"authdescription2684\",\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\": \"tokenname7170\",\r\n \"value\": \"tokenvalue717\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope2608\",\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\": \"clientid8685\",\r\n \"clientSecret\": \"authclientsecret3988\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6463\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2655\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhzaWQ4OTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e711661d-f5f1-4bfa-acd5-400235010e25" + "2a40eb3c-9846-438c-9038-7891f6d72915" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:25 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAciw=\"" + "\"AAAAAAAACks=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af8ecc59-aeec-41db-ae3c-39f6a1e9ad85" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "58cba6a3-a0b0-4ae6-ab26-7ed143fcb565" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "30f2e138-737c-43bb-9685-d35a522bdfc6" + "c28cc962-a07f-4d55-a5ab-5ab1621e3154" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021625Z:30f2e138-737c-43bb-9685-d35a522bdfc6" + "WESTUS:20200207T010026Z:c28cc962-a07f-4d55-a5ab-5ab1621e3154" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:25 GMT" - ], "Content-Length": [ - "1263" + "1271" ], "Content-Type": [ "application/json; charset=utf-8" @@ -466,59 +466,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6876\",\r\n \"properties\": {\r\n \"displayName\": \"authName823\",\r\n \"description\": \"authdescription9674\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid2297\",\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid8904\",\r\n \"properties\": {\r\n \"displayName\": \"authName5683\",\r\n \"description\": \"authdescription2684\",\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\": \"tokenname7170\",\r\n \"value\": \"tokenvalue717\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope2608\",\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\": \"clientid8685\",\r\n \"clientSecret\": \"authclientsecret3988\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6463\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2655\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhzaWQ4OTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef6e7e33-1f90-40ac-ad2f-8195799269d6" + "cbe0f4ac-3107-4053-8710-d8c4dc8370a9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7cbf64ff-b3ff-4080-b228-741fb269bbb3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2b262dbd-7967-48a5-9371-90ebcf94b2cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-correlation-request-id": [ - "a76e0703-5a34-4a85-9ce1-d6374ee52c48" + "0405a271-5ae3-44dd-b1a4-4655c79d1f77" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021626Z:a76e0703-5a34-4a85-9ce1-d6374ee52c48" + "WESTUS:20200207T010026Z:0405a271-5ae3-44dd-b1a4-4655c79d1f77" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:26 GMT" - ], "Content-Length": [ "101" ], @@ -533,25 +533,25 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhzaWQ4OTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"resourceOwnerPassword\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "91e2e8a1-4fb4-43e4-9ea2-518613225de0" + "e5f0b31c-c822-43de-a6d5-88ac4937a415" ], "If-Match": [ - "\"AAAAAAAAcis=\"" + "\"AAAAAAAACko=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,33 +564,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0c1bc4b-92ba-4a43-af12-abf897619685" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a69cb461-9a23-420c-9801-ffd955fc7bb0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "ce36321f-6222-41c7-9c7e-7a05371cdb54" + "7f4ea067-2ea5-4466-b8a0-3cf28fbd4e1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021625Z:ce36321f-6222-41c7-9c7e-7a05371cdb54" + "WESTUS:20200207T010026Z:7f4ea067-2ea5-4466-b8a0-3cf28fbd4e1a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:25 GMT" - ], "Expires": [ "-1" ] @@ -599,121 +599,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhzaWQ4OTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a52e2e8d-74e7-4a80-b9b5-512c042f629a" + "bc1da1e6-ee4a-494f-bb44-eed550a47574" ], "If-Match": [ - "\"AAAAAAAAciw=\"" + "\"AAAAAAAACks=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a3bb7b5-7b45-4a34-8936-7457e9119c52" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "74af022c-9f04-4a51-b081-bce3e7159097" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "16e3eb2d-12a8-43c8-993e-c59957a8a1d5" + "e57b8504-c99e-4ede-8bbd-f230faad9d3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021626Z:16e3eb2d-12a8-43c8-993e-c59957a8a1d5" + "WESTUS:20200207T010026Z:e57b8504-c99e-4ede-8bbd-f230faad9d3a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:26 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/authorizationServers/authsid8904?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2F1dGhvcml6YXRpb25TZXJ2ZXJzL2F1dGhzaWQ4OTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68d68e0b-2a4b-4f77-ac6e-d55dc01a7bb1" + "09c0b4e8-4b0f-4bcc-9c3a-8480e00fbe6e" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32bbe087-ca64-474a-b24d-775686584f42" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "37f07afc-9332-4321-b3c5-63deb3ea20a9" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "384d8e1e-6d83-421e-a999-214356c5e902" + "6762c396-ece9-479b-8581-a3378ca10eaa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021626Z:384d8e1e-6d83-421e-a999-214356c5e902" + "WESTUS:20200207T010027Z:6762c396-ece9-479b-8581-a3378ca10eaa" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:26 GMT" - ], "Expires": [ "-1" ] @@ -724,16 +724,16 @@ ], "Names": { "CreateListUpdateDelete": [ - "authsid6876", - "authName823", - "oauth2scope6309", - "clientid2297", - "authdescription9674", - "authclientsecret7354", - "authresourceownerpwd3594", - "authresourceownerusername3598", - "tokenname2079", - "tokenvalue7528" + "authsid8904", + "authName5683", + "oauth2scope2608", + "clientid8685", + "authdescription2684", + "authclientsecret3988", + "authresourceownerpwd2655", + "authresourceownerusername6463", + "tokenname7170", + "tokenvalue717" ] }, "Variables": { @@ -741,7 +741,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/BackendTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/BackendTests/CreateListUpdateDelete.json index e8b92b0c1cc2..4e67d8671458 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/BackendTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/BackendTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f503ef4-bca2-46cf-8991-80e4cfc26c5e" + "66b1ced1-900b-49ca-a2bb-9c4a1b8e6e71" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:44 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f17722b-d988-4b81-8780-bdd0d61f839f", - "15153419-556f-4fef-aed8-a18a25716935" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3db4e65d-b713-4bd0-b66e-493449abb2a2", + "b3c8f735-200a-4177-acb3-1eb5b497d8d0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "bb973d3d-8d3e-4170-aac7-30ba12106906" + "13be65eb-48b6-4f41-93d4-960f6ae5175d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020425Z:bb973d3d-8d3e-4170-aac7-30ba12106906" + "WESTUS:20200207T010145Z:13be65eb-48b6-4f41-93d4-960f6ae5175d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:25 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1405c567-cdda-4af3-8826-03a76402ffc7" + "e6717b16-1924-463a-b670-e1baa7f50fc2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:45 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0941eab0-41d7-45e5-9e36-afee2b08fc4c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5f20f361-0b1d-4c1b-895a-4953abcd80a6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "88150745-258b-4384-8e13-433ef045058d" + "ec5c2611-05e4-4045-93f5-2712349d68bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020426Z:88150745-258b-4384-8e13-433ef045058d" + "WESTUS:20200207T010145Z:ec5c2611-05e4-4045-93f5-2712349d68bf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:25 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,70 +136,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description9758\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n },\r\n \"url\": \"https://backendname5060/\",\r\n \"protocol\": \"http\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description3107\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n },\r\n \"url\": \"https://backendname351/\",\r\n \"protocol\": \"http\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9fbbaf01-fe3b-429f-a08e-6538a50b1b33" + "a31ed65a-1a7a-4015-ad7b-9f1d75072639" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "565" + "564" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:46 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcCU=\"" + "\"AAAAAAAACpw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3242bd13-17dc-4953-8662-239c25cc6757" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8df9742b-2c78-449a-b5ce-15a15859c17b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "86060c3f-c9ae-4327-8dde-266b09e7dd40" + "2d636382-4d62-474a-b697-ac05122666be" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020427Z:86060c3f-c9ae-4327-8dde-266b09e7dd40" + "WESTUS:20200207T010147Z:2d636382-4d62-474a-b697-ac05122666be" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:27 GMT" - ], "Content-Length": [ - "849" + "854" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,64 +208,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid2704\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description9758\",\r\n \"url\": \"https://backendname5060/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid985\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description3107\",\r\n \"url\": \"https://backendname351/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0592583e-9809-475f-ba93-44b3791584f1" + "55257de9-4aad-45d7-b8c6-d86662314d0c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:46 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcCU=\"" + "\"AAAAAAAACpw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b3eaed3-bc40-4cf5-b09a-6f3819025658" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1d3d042b-143e-481e-9188-8c24e83bf798" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "4527e3b3-77ec-45a7-b892-dac947784e1b" + "fc5c64c0-5584-453d-99b1-95e9f77c60b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020427Z:4527e3b3-77ec-45a7-b892-dac947784e1b" + "WESTUS:20200207T010147Z:fc5c64c0-5584-453d-99b1-95e9f77c60b1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:27 GMT" - ], "Content-Length": [ - "849" + "854" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,64 +274,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid2704\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description9758\",\r\n \"url\": \"https://backendname5060/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid985\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description3107\",\r\n \"url\": \"https://backendname351/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a82a7fd4-c84b-4d24-ace4-32f92344840e" + "668de8aa-9be2-481a-9f79-db496a5f400b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:48 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcCc=\"" + "\"AAAAAAAACp4=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2dbb82bc-6c75-44bc-914f-50dc82870089" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2b304077-1f7b-4ea5-9a28-5834a96b8c55" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "2090df9f-6300-49fb-991e-73585ae330cb" + "5f00fc03-25c0-4c8f-8e39-370d5cda9041" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020427Z:2090df9f-6300-49fb-991e-73585ae330cb" + "WESTUS:20200207T010148Z:5f00fc03-25c0-4c8f-8e39-370d5cda9041" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:27 GMT" - ], "Content-Length": [ - "856" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -340,59 +340,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid2704\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription1865\",\r\n \"url\": \"https://backendname5060/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid985\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription347\",\r\n \"url\": \"https://backendname351/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b0facfe-1242-419f-8aa8-0c15cafc19f2" + "fe38f28b-52c1-4466-a753-fa43dfde17b9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f19b1740-8b4f-4564-80b3-f3c8584a2cdf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "70af756c-0bf0-4877-8ef4-dfcdb75501ff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-correlation-request-id": [ - "cf13088b-04ac-4fe3-a43c-4c090791ae31" + "7d0b0db8-9343-4b1a-b300-1d1a9a3954bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020428Z:cf13088b-04ac-4fe3-a43c-4c090791ae31" + "WESTUS:20200207T010149Z:7d0b0db8-9343-4b1a-b300-1d1a9a3954bf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:28 GMT" - ], "Content-Length": [ "83" ], @@ -407,57 +407,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "654592e7-ef5a-42aa-a143-d70e2840bedc" + "48feca28-0cf3-4ec3-bf22-ae518651fe3f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:47 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07e88e8c-ab7a-4474-abd9-91fb2bc8d97c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fcd94ae2-ca3e-4c15-a87d-2b0dcb51d55e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "4e902cc3-5c16-4eef-8185-c6fb1445733d" + "d2ed03af-46fc-4935-8f65-d20233afcc12" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020427Z:4e902cc3-5c16-4eef-8185-c6fb1445733d" + "WESTUS:20200207T010147Z:d2ed03af-46fc-4935-8f65-d20233afcc12" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:27 GMT" - ], "Content-Length": [ - "1010" + "1030" ], "Content-Type": [ "application/json; charset=utf-8" @@ -466,62 +466,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid2704\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description9758\",\r\n \"url\": \"https://backendname5060/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid985\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description3107\",\r\n \"url\": \"https://backendname351/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d25b1a6-007f-4965-8eb9-9dcd2f5401e7" + "fdb6fb15-e52d-448e-89c8-4e26fdddc085" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:47 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcCU=\"" + "\"AAAAAAAACpw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "241570e3-1fd0-48f4-93cb-558e906f899d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6b944d79-e480-4558-bc1f-bfb2549421a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "c90630c2-b6c4-4e2d-8f59-97910161900b" + "5dc10c5d-b6c4-4295-bd0d-6f1b3d1999e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020427Z:c90630c2-b6c4-4e2d-8f59-97910161900b" + "WESTUS:20200207T010148Z:5dc10c5d-b6c4-4295-bd0d-6f1b3d1999e5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:27 GMT" - ], "Content-Length": [ "0" ], @@ -533,58 +533,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f2d9b07-efdb-4b62-977c-229ec12b66d9" + "1c860abc-57fc-439c-bb9a-874fe0fbe7c9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:48 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcCc=\"" + "\"AAAAAAAACp4=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c041ea0-3786-48e6-ab96-2ab3493740bd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0d154c09-e581-4aa6-8776-a2eeee4d8988" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "519b441a-095a-4eea-aff8-b5530165aba1" + "2a5274d7-831c-41dc-9751-7fcc3c281419" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020427Z:519b441a-095a-4eea-aff8-b5530165aba1" + "WESTUS:20200207T010149Z:2a5274d7-831c-41dc-9751-7fcc3c281419" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:27 GMT" - ], "Content-Length": [ "0" ], @@ -596,64 +596,64 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription1865\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription347\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00d6b463-7a14-4033-929a-bbfffff5ee42" + "9a2c9b8a-84be-4c55-bbd5-ffbd8d13d1eb" ], "If-Match": [ - "\"AAAAAAAAcCU=\"" + "\"AAAAAAAACpw=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "73" + "72" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "946594d9-7282-4c9d-a68c-c2e6f1ecba3c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "33a71c54-d493-4c7d-921e-0e55f6d1ffe0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "d779db2f-95e3-4427-86e4-e79d2eda95fe" + "c7c39e95-581c-4135-a1ac-5ee217854e50" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020427Z:d779db2f-95e3-4427-86e4-e79d2eda95fe" + "WESTUS:20200207T010148Z:c7c39e95-581c-4135-a1ac-5ee217854e50" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:27 GMT" - ], "Expires": [ "-1" ] @@ -662,121 +662,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b53def1-0191-42b2-915e-c9393e298278" + "c9c13104-a341-4ef5-a133-4d3c1eb046d5" ], "If-Match": [ - "\"AAAAAAAAcCc=\"" + "\"AAAAAAAACp4=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cb134a8-0b56-453b-8486-2dcee6dc7a78" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "841ffd85-f5a6-4081-8b92-9298a6eccba5" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "a7bc31d3-e8be-48a1-b0d7-920bb72b427f" + "cf8c086a-7680-4740-99cf-792c8101031f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020428Z:a7bc31d3-e8be-48a1-b0d7-920bb72b427f" + "WESTUS:20200207T010149Z:cf8c086a-7680-4740-99cf-792c8101031f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:28 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/backendid985?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL2JhY2tlbmRpZDk4NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7aedc529-af69-4fdb-9872-0cdad5e46913" + "6baffc58-3163-4a09-8ebd-fc7b19fe88f6" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5667342d-691d-4c8b-b5d8-06ab14d8ef36" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "41e8eb2d-6b83-4fc2-bef5-2014c0adaf2a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "7609cd43-c45a-4fc8-be8a-e9e08dc38a86" + "c9d706c2-0da6-46f7-bb0a-7b423f6e4822" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020428Z:7609cd43-c45a-4fc8-be8a-e9e08dc38a86" + "WESTUS:20200207T010149Z:c9d706c2-0da6-46f7-bb0a-7b423f6e4822" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:28 GMT" - ], "Expires": [ "-1" ] @@ -787,10 +787,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "backendid2704", - "backendName5060", - "description9758", - "patchedDescription1865" + "backendid985", + "backendName351", + "description3107", + "patchedDescription347" ] }, "Variables": { @@ -798,7 +798,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/BackendTests/ServiceFabricCreateUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/BackendTests/ServiceFabricCreateUpdateDelete.json index f119c804a5fb..aa33fa37a962 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/BackendTests/ServiceFabricCreateUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/BackendTests/ServiceFabricCreateUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "26cbe36f-3541-48d8-8464-9623ad80cfb5" + "dc76dd6f-fa68-4679-9dcc-ff6d180e3bcd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2355caf0-0d1d-4b39-95ce-92facd205aec", - "2b60490a-641d-4a9c-a398-599e66967a03" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "27e92bff-9f18-4e88-8da2-115dfd89ac63", + "3083b5c7-8060-40b5-a5f8-cd698f8ef403" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "39a4b22d-59e2-4bc7-a120-87eed782244d" + "47a9745d-7964-4c25-838c-be44ad9522a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020429Z:39a4b22d-59e2-4bc7-a120-87eed782244d" + "WESTUS:20200207T014108Z:47a9745d-7964-4c25-838c-be44ad9522a6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:29 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10b2f25a-b6dd-4730-ad75-e88cfdb7e806" + "6eaccf7a-7198-42ad-a0bf-001b3d9a4e3b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:08 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "792c621a-b480-419a-8b1a-1c73f9f3002d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "419b80aa-b77c-45ec-8108-0bd3f258e7fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "69fdff4b-30a0-415e-a1db-66dd19ee79f4" + "068f8a5b-ce92-4f67-b6b9-37c36dfe5e03" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020430Z:69fdff4b-30a0-415e-a1db-66dd19ee79f4" + "WESTUS:20200207T014108Z:068f8a5b-ce92-4f67-b6b9-37c36dfe5e03" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:29 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId8019?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDgwMTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId7624?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcy9jZXJ0aWZpY2F0ZUlkNzYyND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"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\",\r\n \"password\": \"Password\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b0df6a10-2c59-4a8d-ad12-218e38e0764d" + "669f822a-14cb-4015-a632-1c754aa90492" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +168,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcC0=\"" + "\"AAAAAAAAC9o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e61d31ce-d74c-4824-a2f1-42eadb8509b3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8246a934-38a1-4374-8040-0e9c9ff15bd4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "7db4c185-13a8-44e8-b412-6f705d7312c4" + "98573c56-b864-43e8-a1b3-0333d0e02772" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020431Z:7db4c185-13a8-44e8-b412-6f705d7312c4" + "WESTUS:20200207T014109Z:98573c56-b864-43e8-a1b3-0333d0e02772" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:30 GMT" - ], "Content-Length": [ - "456" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,70 +208,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId8019\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId8019\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId7624\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId7624\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL3NmYmFja2VuZDYyNzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description8641\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"maxPartitionResolutionRetries\": 5,\r\n \"managementEndpoints\": [\r\n \"https://backendname7751/\"\r\n ],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"https://backendname7751/\",\r\n \"protocol\": \"http\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description5962\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"maxPartitionResolutionRetries\": 5,\r\n \"managementEndpoints\": [\r\n \"https://backendname9389/\"\r\n ],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "91f6a5f8-4cbb-4a03-83b3-736eef8e12f4" + "6843415a-5ea4-4fb7-bb0e-45f7891c07ba" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "588" + "595" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcDA=\"" + "\"AAAAAAAAC90=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0cd916e-3f46-4fe1-b845-634e1ce99774" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cf757f8b-77fb-425c-8837-80b2df2fa452" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "dd61a11b-43f6-41e3-986c-68e45cd78962" + "d43d8ea4-22a4-4d2a-9638-94184ae18403" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020431Z:dd61a11b-43f6-41e3-986c-68e45cd78962" + "WESTUS:20200207T014110Z:d43d8ea4-22a4-4d2a-9638-94184ae18403" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:31 GMT" - ], "Content-Length": [ - "872" + "887" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,61 +280,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend8753\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description8641\",\r\n \"url\": \"https://backendname7751/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname7751/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend6274\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description5962\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname9389/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0a6e9ca-f810-40f5-9a8d-08dbd8edca04" + "9f54a1c9-3aee-41e6-82c5-0fbda87640dd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47dd777a-95ac-4017-bc46-72da847237b2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b9719843-d810-44cd-85b8-09f4e80683e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-correlation-request-id": [ - "516d4d25-ba2e-43ad-b50b-0cd66d89c990" + "ac0cf432-e377-4cd2-b7d4-f50be996fa6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020431Z:516d4d25-ba2e-43ad-b50b-0cd66d89c990" + "WESTUS:20200207T014110Z:ac0cf432-e377-4cd2-b7d4-f50be996fa6a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:31 GMT" - ], "Content-Length": [ - "1001" + "1031" ], "Content-Type": [ "application/json; charset=utf-8" @@ -343,26 +343,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend8753\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description8641\",\r\n \"url\": \"https://backendname7751/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname7751/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend6274\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description5962\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname9389/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753/reconnect?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzL3JlY29ubmVjdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274/reconnect?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL3NmYmFja2VuZDYyNzQvcmVjb25uZWN0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"after\": \"PT5M\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7aa873d7-3a45-46ad-838e-757cc479ccc9" + "e259f275-e24e-4048-bff8-d329bcc45d3e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,63 +375,63 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31b0eb3d-67fd-4929-91ec-9bbd33833a02" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1596b6f8-93bd-48b4-9f0f-a17309520aa9" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "f43c3163-7f24-4123-ba13-dc5c308f169d" + "da44a3fd-97aa-4d4a-b62b-fe203f0eaeaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020432Z:f43c3163-7f24-4123-ba13-dc5c308f169d" + "WESTUS:20200207T014110Z:da44a3fd-97aa-4d4a-b62b-fe203f0eaeaf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:31 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL3NmYmFja2VuZDYyNzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription6324\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription7164\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ce1249-86bf-4ec9-a049-c33f6d4ac8b6" + "b4422040-8b09-4479-a8c0-98959f6d6a9c" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,33 +444,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13d31d69-c092-4ec1-b2b1-dce5a97cd8d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d3e62614-48a3-4966-8854-0b0c79a1c54f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "7b81e462-d882-4c47-adf4-8bb5927cee02" + "b561b88f-8351-429d-81cb-ea222412bb94" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020432Z:7b81e462-d882-4c47-adf4-8bb5927cee02" + "WESTUS:20200207T014111Z:b561b88f-8351-429d-81cb-ea222412bb94" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:31 GMT" - ], "Expires": [ "-1" ] @@ -479,60 +479,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL3NmYmFja2VuZDYyNzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aee2be55-7609-4895-ae75-a830487c2480" + "24465122-7f88-497d-a100-2e73d1f889df" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:10 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcDU=\"" + "\"AAAAAAAAC+I=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba6a407e-2ee4-4560-9721-ac7b3997075f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "48686ace-e89d-4ca8-9cd2-82926cd4de6a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-correlation-request-id": [ - "a7579697-c498-49fa-952d-eac94d343148" + "3ab7a47e-45d0-481f-9b0f-e3ed6080cecd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020432Z:a7579697-c498-49fa-952d-eac94d343148" + "WESTUS:20200207T014111Z:3ab7a47e-45d0-481f-9b0f-e3ed6080cecd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:31 GMT" - ], "Content-Length": [ - "879" + "894" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,59 +541,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend8753\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription6324\",\r\n \"url\": \"https://backendname7751/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname7751/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend6274\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription7164\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname9389/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL3NmYmFja2VuZDYyNzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "130da1f0-a475-4675-b529-4bec4c052bef" + "9fab398f-60c8-4c4f-bb13-0296a6b04029" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fdaa05c-a081-49fa-b422-495f50b7eecd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6975c79f-ebf2-45ca-a386-925af136da71" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-correlation-request-id": [ - "d1807672-4ce5-47a9-b43a-8f293c281a5e" + "20ad9bb2-bcec-4351-8e54-4502ea3aa0b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020432Z:d1807672-4ce5-47a9-b43a-8f293c281a5e" + "WESTUS:20200207T014111Z:20ad9bb2-bcec-4351-8e54-4502ea3aa0b6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:32 GMT" - ], "Content-Length": [ "83" ], @@ -608,58 +608,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL3NmYmFja2VuZDYyNzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de7fcfb5-cd44-437c-8191-ed390c44630e" + "0b2c0c94-09e5-444c-b418-183a83806673" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:10 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcDU=\"" + "\"AAAAAAAAC+I=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2e46b6b-cf7f-46c6-b808-32d431584a15" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "53e0b09c-34ed-4817-bf45-6e5a0b51de40" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-correlation-request-id": [ - "e3428c9d-9965-4f0e-8543-738135f83d1f" + "3772fde1-7da2-4609-a171-a3b878419fb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020432Z:e3428c9d-9965-4f0e-8543-738135f83d1f" + "WESTUS:20200207T014111Z:3772fde1-7da2-4609-a171-a3b878419fb5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:31 GMT" - ], "Content-Length": [ "0" ], @@ -671,121 +671,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL3NmYmFja2VuZDYyNzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3d7442a-6e47-4aaf-bc3d-d7d4c6e161a1" + "566df97c-153b-485c-aa91-2457a953a044" ], "If-Match": [ - "\"AAAAAAAAcDU=\"" + "\"AAAAAAAAC+I=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f86ffaa-eb8d-4ed1-8baa-97466a99dcb2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3836cb78-2c96-4020-aa96-cf0bfd56c005" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "539a10b3-1d7c-4e16-9bc9-e7298e1c48cc" + "eb85a539-1662-46c0-948b-c0d7beb17d26" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020432Z:539a10b3-1d7c-4e16-9bc9-e7298e1c48cc" + "WESTUS:20200207T014111Z:eb85a539-1662-46c0-948b-c0d7beb17d26" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:32 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/backends/sfbackend6274?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2JhY2tlbmRzL3NmYmFja2VuZDYyNzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8beb7ff6-3b84-4b59-845a-247095b124e3" + "a2aacca7-1841-4ec4-a1ea-52651266afa2" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c82abe7c-5924-4a24-aaf9-26a9c3fb125f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b65266f4-8bd0-4174-97e3-80afc7c3e4a4" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "d41ccf4d-1dcc-418a-8bfb-d5969dc8a288" + "d48bce28-2227-4c7a-8240-b28965e311f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020433Z:d41ccf4d-1dcc-418a-8bfb-d5969dc8a288" + "WESTUS:20200207T014111Z:d48bce28-2227-4c7a-8240-b28965e311f9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:32 GMT" - ], "Expires": [ "-1" ] @@ -794,63 +794,63 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId8019?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDgwMTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId7624?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcy9jZXJ0aWZpY2F0ZUlkNzYyND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ba87414-a862-4c1a-a1d8-cf728d12612f" + "16c87537-a647-48f8-adcb-04e0596d5e0e" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:41:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb6a2d5f-f3f6-4583-a24e-2d7a523e2fd5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cf64422c-b35d-408f-af49-3f7b55bcc007" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "91669ac1-4361-421a-817f-63ad1347a222" + "af71af59-136b-4623-afb7-8c56d289ff65" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020433Z:91669ac1-4361-421a-817f-63ad1347a222" + "WESTUS:20200207T014112Z:af71af59-136b-4623-afb7-8c56d289ff65" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:32 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -859,11 +859,11 @@ ], "Names": { "ServiceFabricCreateUpdateDelete": [ - "sfbackend8753", - "certificateId8019", - "backendName7751", - "description8641", - "patchedDescription6324" + "sfbackend6274", + "certificateId7624", + "backendName9389", + "description5962", + "patchedDescription7164" ] }, "Variables": { @@ -871,7 +871,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/CacheTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/CacheTests/CreateListUpdateDelete.json index 9c3975603098..550e37ae020a 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/CacheTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/CacheTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "65453192-a554-4545-8c5b-8d1bff251210" + "5981ff8c-ef8d-4052-b269-2c53c9c08e46" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "620ce007-8a26-425a-a877-c1663c069da1", - "f16927f5-ca35-484e-babb-cdcf0a8b3356" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d4a5ae97-8b5d-4ebd-9d05-0e8121529db1", + "f719f53e-3bbc-47a7-94c5-9a8e32ca7edc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "d9c73ede-df23-4521-b507-4aef757625e8" + "26f8b711-b925-499f-adcf-5bdd12a31238" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202950Z:d9c73ede-df23-4521-b507-4aef757625e8" + "WESTUS:20200207T010018Z:26f8b711-b925-499f-adcf-5bdd12a31238" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:50 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39c10793-ee13-45b8-ad76-4a3c6a8c3f50" + "8891641b-350f-467f-b109-c7dd33e5e0a7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91332f2d-12d4-4fc3-956c-a7081e176f02" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a26979a9-27d2-4ba7-b6c0-2aee3dab0e88" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "d55fe01b-7fad-4104-a34e-2c250128bd60" + "4ffa2bc9-06a5-43ba-84a9-8dde62d66a30" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202951Z:d55fe01b-7fad-4104-a34e-2c250128bd60" + "WESTUS:20200207T010018Z:4ffa2bc9-06a5-43ba-84a9-8dde62d66a30" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:51 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NhY2hlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ad1bc77-2cab-4086-b694-f3e722956010" + "eefaf680-7c39-41f2-b2f9-6fd2565d5a6e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83e55953-66f2-4cb4-9ebe-ac9177a0019d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d9640391-1853-4f97-af44-c79dd7292dfa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "b348e363-6138-4fc5-bba3-5dd9bd4dc840" + "353395f5-c410-4a6a-874b-430361ba344b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202951Z:b348e363-6138-4fc5-bba3-5dd9bd4dc840" + "WESTUS:20200207T010019Z:353395f5-c410-4a6a-874b-430361ba344b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:51 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NhY2hlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1983474-7c07-4a2e-9357-1ca695d7cb99" + "9fd6fa36-56e4-4273-babf-6099eeafb51f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15128568-868a-4511-a643-1bdedda238b2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ea872c4e-337d-4f89-b0f2-ecef7a1020a7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "353f20de-3b9c-451f-9a0e-d67859ab09e9" + "ee2af92f-b954-4953-85bb-860e03b54a8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202952Z:353f20de-3b9c-451f-9a0e-d67859ab09e9" + "WESTUS:20200207T010020Z:ee2af92f-b954-4953-85bb-860e03b54a8b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:52 GMT" - ], "Content-Length": [ - "432" + "455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet3167\",\r\n \"connectionString\": \"{{5cafa3bfb59744156c37296e}}\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet4644\",\r\n \"connectionString\": \"{{5e3cb6a42393691028e5c653}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NhY2hlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2d106cc-7898-4729-b75d-4386a1e87dd3" + "c5fa67b4-d0ed-443c-81fa-5d0346acff15" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37165e57-4d17-492a-a5a6-b8c28ade5ee8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a6acac00-4da9-4057-a7e1-f65d9ecefb5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "32b516ae-94ef-4650-b604-0fc86e7cbce3" + "6688abfc-9601-49fe-884e-529b8487a90c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202953Z:32b516ae-94ef-4650-b604-0fc86e7cbce3" + "WESTUS:20200207T010021Z:6688abfc-9601-49fe-884e-529b8487a90c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:53 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,26 +325,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXMvQ2VudHJhbFVTP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches/CentralUS?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NhY2hlcy9DZW50cmFsVVM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"azsmnet3167\",\r\n \"connectionString\": \"azsmnet6777\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"azsmnet4644\",\r\n \"connectionString\": \"azsmnet9566\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "48f84c59-f407-47ef-9d1a-23b624f0c4f4" + "10ae3243-e05c-492e-8c77-2801d4c883b7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,38 +357,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:20 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAesE=\"" + "\"AAAAAAAACkU=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74b6b62f-b1a1-458d-af19-61ede0cfd55c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "eaf8b7dc-3b79-4c3b-aa51-b30d7e418114" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "13d9a0f2-0153-48af-9769-8312708e771e" + "1fe05d92-ea06-4df6-aa1a-a07d7bf21ff8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202952Z:13d9a0f2-0153-48af-9769-8312708e771e" + "WESTUS:20200207T010020Z:1fe05d92-ea06-4df6-aa1a-a07d7bf21ff8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:52 GMT" - ], "Content-Length": [ - "371" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,64 +397,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet3167\",\r\n \"connectionString\": \"{{5cafa3bfb59744156c37296e}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet4644\",\r\n \"connectionString\": \"{{5e3cb6a42393691028e5c653}}\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXMvQ2VudHJhbFVTP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches/CentralUS?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NhY2hlcy9DZW50cmFsVVM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acd07a7c-d5de-4526-9bec-c6971be5dce0" + "5b01db1f-67b8-44b5-a116-648f9e67c92f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:20 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAesE=\"" + "\"AAAAAAAACkU=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ae4ed7b-14b7-44c6-862e-164634e99b69" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2bb0529a-14f1-4244-8ab6-6c512852a063" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "46f1e06d-ad72-416c-bbc1-f3d6ec0bd487" + "cee3c862-543f-437f-8150-4c14fd673bd2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202952Z:46f1e06d-ad72-416c-bbc1-f3d6ec0bd487" + "WESTUS:20200207T010020Z:cee3c862-543f-437f-8150-4c14fd673bd2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:52 GMT" - ], "Content-Length": [ - "371" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,125 +463,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet3167\",\r\n \"connectionString\": \"{{5cafa3bfb59744156c37296e}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet4644\",\r\n \"connectionString\": \"{{5e3cb6a42393691028e5c653}}\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXMvQ2VudHJhbFVTP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches/CentralUS?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NhY2hlcy9DZW50cmFsVVM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6e5b13a-e1c0-4621-8f4b-5294adfed9e0" + "803efcf0-25e1-4f59-8700-5ee0681e4591" ], "If-Match": [ - "\"AAAAAAAAesE=\"" + "\"AAAAAAAACkU=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12fd7898-d3b7-409d-abcd-ade1ec715afb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f90a5d3c-0894-4bf3-b141-8da547376f19" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "7442a79f-a3a2-4082-a0b5-c4edbc61cf79" + "bfb8d53b-3f39-494d-b35d-5bfc40dcde6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202953Z:7442a79f-a3a2-4082-a0b5-c4edbc61cf79" + "WESTUS:20200207T010021Z:bfb8d53b-3f39-494d-b35d-5bfc40dcde6e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:52 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXMvQ2VudHJhbFVTP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/caches/CentralUS?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NhY2hlcy9DZW50cmFsVVM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1649da10-90b8-4141-82c9-4741c7dbc15e" + "8513a73d-6dc5-48c2-a349-725a70369ed3" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c393f8e-de87-4297-8838-7447e15af3ae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3aae9024-2891-4630-85f7-70b2cdd0a75a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "d39a78bf-5e94-4f70-a647-e1beee629e41" + "6608f66b-e91e-40d7-99ab-bc37abee310a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202953Z:d39a78bf-5e94-4f70-a647-e1beee629e41" + "WESTUS:20200207T010021Z:6608f66b-e91e-40d7-99ab-bc37abee310a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:53 GMT" - ], "Expires": [ "-1" ] @@ -590,57 +590,57 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dda0726-3402-4e96-b59a-5e7529bf1d70" + "6d1704e9-513b-4478-9a34-7a31f5cbf589" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ba54ac8-99fb-4325-ad90-262cac2a5ba4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0707e604-de17-49f1-8d70-d3d9bf6de90f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "908de9d8-077e-45fa-ae0d-2f04e74dfc92" + "6068233e-fcae-4583-a497-2e30a95a762c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202953Z:908de9d8-077e-45fa-ae0d-2f04e74dfc92" + "WESTUS:20200207T010022Z:6068233e-fcae-4583-a497-2e30a95a762c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:53 GMT" - ], "Content-Length": [ - "530" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -649,67 +649,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5cafa3bfb59744156c37296e\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5cafa3bfb59744156c37296e\",\r\n \"properties\": {\r\n \"displayName\": \"cache-CentralUS-connection-5cafa3bfb59744156c37296f\",\r\n \"value\": \"azsmnet6777\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/5e3cb6a42393691028e5c653\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5e3cb6a42393691028e5c653\",\r\n \"properties\": {\r\n \"displayName\": \"cache-CentralUS-connection-5e3cb6a42393691028e5c654\",\r\n \"value\": \"azsmnet9566\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5cafa3bfb59744156c37296e?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWZhM2JmYjU5NzQ0MTU2YzM3Mjk2ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/5e3cb6a42393691028e5c653?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvNWUzY2I2YTQyMzkzNjkxMDI4ZTVjNjUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49ed57ba-179a-4a06-bae7-6b654e1e59bc" + "b03f6a23-9f78-43f9-84d8-d5e2b39e4f4b" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89987174-1366-45a6-a9e0-d18d99ed7299" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3cc71d10-53ec-4f09-b749-1b1440a9d5ac" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "a8a3e641-d17b-4493-bd9c-f32bc19167c2" + "932a7d2e-4796-448e-bb26-eb439f208ea8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T202953Z:a8a3e641-d17b-4493-bd9c-f32bc19167c2" + "WESTUS:20200207T010022Z:932a7d2e-4796-448e-bb26-eb439f208ea8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 20:29:53 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -718,8 +718,8 @@ ], "Names": { "CreateListUpdateDelete": [ - "azsmnet6777", - "azsmnet3167" + "azsmnet9566", + "azsmnet4644" ] }, "Variables": { @@ -727,7 +727,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/CertificateTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/CertificateTests/CreateListUpdateDelete.json index a89b3c93bf0c..50f562b0cdab 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/CertificateTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/CertificateTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "168e8a24-7289-408c-9120-04ee94ab9b2b" + "2cf7f1e0-c8da-44e6-82e1-c11c18a3abaf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:11 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5daed8e4-d714-489e-ab43-4887906baadb", - "a033a62b-4bf6-45ff-9f1a-e55453a22448" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "dca979f1-5f84-48a9-bc49-4b4b525bd95e", + "3a8ce979-8fcd-4c85-84db-852ac3a3de9a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "f54b30c1-e9f4-4b85-8da3-7bcd0d889a61" + "ff4c69ac-c169-49a7-a1fe-6228cd3d7afe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021606Z:f54b30c1-e9f4-4b85-8da3-7bcd0d889a61" + "WESTUS:20200207T010611Z:ff4c69ac-c169-49a7-a1fe-6228cd3d7afe" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:06 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9af91d29-42b6-410e-a190-d9b1df6e108d" + "28cfa5b1-008e-40b4-a671-39c7883a9d27" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:11 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd51ed69-db82-4270-b351-d8766aa9daf4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "91ad3de3-2cb4-4316-838a-f869274a8c01" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-correlation-request-id": [ - "dc9536c4-8320-4946-adf2-9983f4f6bf6c" + "1333861e-a4f9-4ea3-aa4d-e39de7bdf39b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021606Z:dc9536c4-8320-4946-adf2-9983f4f6bf6c" + "WESTUS:20200207T010611Z:1333861e-a4f9-4ea3-aa4d-e39de7bdf39b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:06 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "904128b7-8f2e-4fee-a8f8-262aab183c5d" + "579887ae-bca4-419b-930f-e876278a3f1f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3cb86f0-78f1-41e2-8485-11fd73b04033" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "13cfbb38-7c60-45c3-a03a-ee984c458320" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-correlation-request-id": [ - "9f23fbf6-4b5f-4f96-a22e-41372d85fceb" + "42c943a4-cc71-4bd0-89a7-98f227e66dfd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021606Z:9f23fbf6-4b5f-4f96-a22e-41372d85fceb" + "WESTUS:20200207T010612Z:42c943a4-cc71-4bd0-89a7-98f227e66dfd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:06 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc40fe2c-5e7c-4fa6-91a6-daff4fd88d1f" + "51456654-3fea-41ab-9f5f-ea6a72a97127" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d503173f-bee8-446d-bd9c-e4b07abf8f8d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d73701e6-a521-4930-a375-69d20144ca40" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-correlation-request-id": [ - "55a2ce15-0ec3-44de-b374-079db79a76f0" + "d57ee9f8-7ba3-49f8-9568-69b650523d14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021608Z:55a2ce15-0ec3-44de-b374-079db79a76f0" + "WESTUS:20200207T010613Z:d57ee9f8-7ba3-49f8-9568-69b650523d14" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:08 GMT" - ], "Content-Length": [ - "521" + "544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3934\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId5417\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId5417\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b53ddc9a-6c84-4ba2-a0a7-318446c0176f" + "08fc6396-f122-4e32-a0d0-36b6bb89700b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6a5353e-33d0-435b-a008-599a68f72999" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "40140f96-33d9-42b6-b84b-5fc8e69b28f4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-correlation-request-id": [ - "1ae9fd4c-dcc1-4110-b1a6-cb6f6d0ab79e" + "91f40b05-c7f8-433d-8040-4a75fa4824b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021609Z:1ae9fd4c-dcc1-4110-b1a6-cb6f6d0ab79e" + "WESTUS:20200207T010613Z:91f40b05-c7f8-433d-8040-4a75fa4824b8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:09 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,26 +325,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDM5MzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId5417?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcy9jZXJ0aWZpY2F0ZUlkNTQxNz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"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\",\r\n \"password\": \"Password\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e5cb6ae3-7228-4593-9a83-c97c47ec2932" + "9a9f89e2-8c05-403c-8191-0d85ce88895d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,38 +357,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:12 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAciQ=\"" + "\"AAAAAAAAC0Q=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69efe177-8a40-4360-b6d0-e868cd3bbc03" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "978546a2-53e2-4da3-9cbf-ccfa0fdc68c5" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "282d8bdc-9dea-4589-9b23-0e411f94a18a" + "7f96451f-7f14-4881-b70f-96ddfc817221" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021608Z:282d8bdc-9dea-4589-9b23-0e411f94a18a" + "WESTUS:20200207T010612Z:7f96451f-7f14-4881-b70f-96ddfc817221" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:07 GMT" - ], "Content-Length": [ - "456" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,64 +397,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3934\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId5417\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId5417\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDM5MzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId5417?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcy9jZXJ0aWZpY2F0ZUlkNTQxNz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c39504f-426e-441b-8641-88c49d53e954" + "ff4e4f51-d453-47e7-a1ea-aa8f937caec1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:12 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAciQ=\"" + "\"AAAAAAAAC0Q=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9847d9b7-1f9c-424c-8c22-dc8cad88df7b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0297cfbd-977b-4324-a1f0-53e01fa84ade" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "b97f4bf3-92ea-43a3-a0b3-331a8297df14" + "88daa3fe-ed82-42e8-9101-02a542551b3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021608Z:b97f4bf3-92ea-43a3-a0b3-331a8297df14" + "WESTUS:20200207T010613Z:88daa3fe-ed82-42e8-9101-02a542551b3a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:08 GMT" - ], "Content-Length": [ - "456" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,125 +463,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3934\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId5417\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId5417\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDM5MzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId5417?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcy9jZXJ0aWZpY2F0ZUlkNTQxNz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cf892a1-b791-4fb9-8a0e-8dbd5197a6d9" + "4fff5e80-c4b1-412e-8b9d-ea8a1969c46d" ], "If-Match": [ - "\"AAAAAAAAciQ=\"" + "\"AAAAAAAAC0Q=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56973363-3bb4-4105-9734-ff4680407cfe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a4fc9561-8921-420c-bf32-ce3da0c3d3d5" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "9ddeeb11-6973-42a4-9ca3-d91e69999a11" + "d3fd0612-8101-48b2-987c-2a8eb7fb9e92" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021609Z:9ddeeb11-6973-42a4-9ca3-d91e69999a11" + "WESTUS:20200207T010613Z:d3fd0612-8101-48b2-987c-2a8eb7fb9e92" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:08 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDM5MzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/certificates/certificateId5417?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2NlcnRpZmljYXRlcy9jZXJ0aWZpY2F0ZUlkNTQxNz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d0af926-1b9d-4e59-91e6-d92ecbeb24b1" + "788e493e-c2f7-4a85-9213-7eeb4ca993d4" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8641ce8-4f94-4673-be88-99c519c2c63b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "066ca19d-d9fe-4ec2-ba6c-0cecf8efc5e0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "fe3b7fca-70a7-4e67-9a60-f7e5385012df" + "741e5a38-e6d9-460e-823d-21c0e4737346" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021609Z:fe3b7fca-70a7-4e67-9a60-f7e5385012df" + "WESTUS:20200207T010613Z:741e5a38-e6d9-460e-823d-21c0e4737346" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:09 GMT" - ], "Expires": [ "-1" ] @@ -592,7 +592,7 @@ ], "Names": { "CreateListUpdateDelete": [ - "certificateId3934" + "certificateId5417" ] }, "Variables": { @@ -600,7 +600,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DelegationSettingTests/CreateUpdateReset.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DelegationSettingTests/CreateUpdateReset.json index eba8c0e04c86..be233999408b 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DelegationSettingTests/CreateUpdateReset.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DelegationSettingTests/CreateUpdateReset.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4740b36f-a9e6-4124-bd0f-995bcd6a1890" + "eec2ccee-f543-4f13-a3c7-98eac9d2750e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:54:48 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b54f678-82c9-498d-886c-5fafc3167d0a", - "f30ea952-3260-47a2-b601-128cba99e0f4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2bddcb87-f241-4b28-845b-1a98e4b86886", + "f82f5c2a-201d-473a-a367-25fde770dddf" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1188" ], "x-ms-correlation-request-id": [ - "9ea0115c-e977-4af5-b953-4f9b85d1b40b" + "10081b86-5a01-4f19-bbb2-c641f0987ee3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020843Z:9ea0115c-e977-4af5-b953-4f9b85d1b40b" + "WESTUS:20200207T015449Z:10081b86-5a01-4f19-bbb2-c641f0987ee3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:43 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6390e388-6c10-4663-aa49-3e4f4a1bc407" + "e4521f68-e8f7-4b78-a702-2796c32e4ec7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:54:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5ab8f78-1c4e-4bd7-81ed-3d50373eafbe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9251439b-cedb-4859-a7b9-6b1315019de7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11975" ], "x-ms-correlation-request-id": [ - "de3c8dac-edca-4beb-b75d-b078088771d4" + "a00486f1-5942-412f-aeea-590bfc624926" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020844Z:de3c8dac-edca-4beb-b75d-b078088771d4" + "WESTUS:20200207T015449Z:a00486f1-5942-412f-aeea-590bfc624926" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:43 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,64 +136,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL2RlbGVnYXRpb24/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "043a9bf1-3c70-45e9-9138-b6d1e39a80a3" + "a3eef3c1-a1dd-411a-aaf4-94b0944706e8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:54:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAAAyODQAAAAAAAA==\"" + "\"AAAAAAAAwPQABQAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac74bf5c-858d-45fe-b5a4-0df01c7a6bd8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ed90ae3c-558a-4abc-b8df-0132378fb06a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11974" ], "x-ms-correlation-request-id": [ - "37b66441-db97-4c2c-ab2e-023841d33924" + "9b7d2aae-aa5e-402d-af17-d4ca2d43a93e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020844Z:37b66441-db97-4c2c-ab2e-023841d33924" + "WESTUS:20200207T015449Z:9b7d2aae-aa5e-402d-af17-d4ca2d43a93e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:43 GMT" - ], "Content-Length": [ - "458" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,64 +202,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n },\r\n \"enabled\": false,\r\n \"termsOfService\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL2RlbGVnYXRpb24/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee077d5a-7108-4a1b-886c-917ccef9f53a" + "86e635e1-ca5b-432e-9134-ad85592317e5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:54:50 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAAFxMCQAAAAAAAA==\"" + "\"AAAAAAAAwHR2CAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c46bbdd2-6e16-4eb8-9e69-329cf339007e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "761c8c8e-cbae-40f5-b863-c070df550b39" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11972" ], "x-ms-correlation-request-id": [ - "e978b3ec-0f9a-4d02-91e5-86c303649093" + "2aebb52b-bcf4-4c44-bee3-2ef6f9808bed" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020844Z:e978b3ec-0f9a-4d02-91e5-86c303649093" + "WESTUS:20200207T015450Z:2aebb52b-bcf4-4c44-bee3-2ef6f9808bed" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:44 GMT" - ], "Content-Length": [ - "458" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -268,26 +268,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n },\r\n \"enabled\": false,\r\n \"termsOfService\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL2RlbGVnYXRpb24/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"url\": \"https://delegationserver1797/\",\r\n \"validationKey\": \"v5oLZswwf8MX3zP6/uaIqaibs5PmxGuzW8I22mUz14wNflzFEL0GYAZ5QN/lanrR7m82VGiKwfovWAsK+qVd5A==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"url\": \"https://delegationserver1353/\",\r\n \"validationKey\": \"0g7UdWy7NIv8q8fPyuvPoIV71/s5KtqMWCy1t+ngBhjL3K72Davilv1JNPEk9ttPdFcrrTIAlag0RxxABn2iGw==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f5d0e219-7473-4071-8d3e-394435c10a28" + "6dfe6305-a1af-4568-b07c-e3791b34917d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,38 +300,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:54:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAAERtCwAAAAAAAA==\"" + "\"AAAAAAAAwEQvCgAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "919275a3-70aa-490d-a56c-e860209e7645" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fbe20486-686c-4557-b4f6-ab62e4ec812d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1187" ], "x-ms-correlation-request-id": [ - "7645c398-8068-4f8d-a812-d8c29dbf609f" + "281da036-3d9e-4f03-8c5e-7deac78d9bec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020844Z:7645c398-8068-4f8d-a812-d8c29dbf609f" + "WESTUS:20200207T015449Z:281da036-3d9e-4f03-8c5e-7deac78d9bec" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:44 GMT" - ], "Content-Length": [ - "569" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -340,62 +340,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": \"https://delegationserver1797/\",\r\n \"validationKey\": \"v5oLZswwf8MX3zP6/uaIqaibs5PmxGuzW8I22mUz14wNflzFEL0GYAZ5QN/lanrR7m82VGiKwfovWAsK+qVd5A==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": \"https://delegationserver1353/\",\r\n \"validationKey\": \"0g7UdWy7NIv8q8fPyuvPoIV71/s5KtqMWCy1t+ngBhjL3K72Davilv1JNPEk9ttPdFcrrTIAlag0RxxABn2iGw==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n },\r\n \"enabled\": false,\r\n \"termsOfService\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL2RlbGVnYXRpb24/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04d7bb07-623b-4a0d-8053-2f2e0bd3feee" + "281b3c14-d35d-4c8c-9a1a-11d3097ec45e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:54:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAAERtCwAAAAAAAA==\"" + "\"AAAAAAAAwEQvCgAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a5e4c3a-d8d4-440f-bf57-683ba52d5d26" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1cbe3ddf-2503-4023-a981-4a51ea629bb0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11973" ], "x-ms-correlation-request-id": [ - "b4beb117-f00f-4505-8181-a2a3e6c6ebba" + "936119e2-2d2f-4cab-b7dd-ed6f0a88563f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020844Z:b4beb117-f00f-4505-8181-a2a3e6c6ebba" + "WESTUS:20200207T015449Z:936119e2-2d2f-4cab-b7dd-ed6f0a88563f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:44 GMT" - ], "Content-Length": [ "0" ], @@ -407,64 +407,64 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL2RlbGVnYXRpb24/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"url\": \"https://delegationserver1353/\",\r\n \"validationKey\": \"0g7UdWy7NIv8q8fPyuvPoIV71/s5KtqMWCy1t+ngBhjL3K72Davilv1JNPEk9ttPdFcrrTIAlag0RxxABn2iGw==\",\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "811b50d6-20d3-48f3-a5ee-20bf42c1ce8c" + "af6ec710-4b75-413b-b749-0e50ea143bcf" ], "If-Match": [ - "\"AAAAAAAAAERtCwAAAAAAAA==\"" + "\"AAAAAAAAwEQvCgAAAAAAAA==\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "142" + "301" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:54:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "876a73f4-2409-4d6d-a2d3-4bdd83b826af" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "33ff116d-9fc6-423a-9993-3a440bd04ce2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1186" ], "x-ms-correlation-request-id": [ - "3fb3e802-c88e-4658-aaef-e033cb4721be" + "8ba41923-59f8-4cf1-ad95-7f05c13ee927" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020844Z:3fb3e802-c88e-4658-aaef-e033cb4721be" + "WESTUS:20200207T015450Z:8ba41923-59f8-4cf1-ad95-7f05c13ee927" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:44 GMT" - ], "Expires": [ "-1" ] @@ -473,25 +473,25 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL2RlbGVnYXRpb24/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fb9702f7-d28f-4cd7-b7cd-dde76cd8c6bd" + "c0c6771d-550b-4cda-8eab-692bf8f9edb7" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,33 +504,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:54:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce9284a6-9ebc-4d79-9475-90bbcf88b7e9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c56364e3-e163-41bc-adf9-59fa91ba9b5f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1185" ], "x-ms-correlation-request-id": [ - "9de2921f-ce84-473f-83b0-bac33838fec5" + "8e8c4940-e6a7-46c4-aa0c-18fd7aaea71d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020845Z:9de2921f-ce84-473f-83b0-bac33838fec5" + "WESTUS:20200207T015451Z:8e8c4940-e6a7-46c4-aa0c-18fd7aaea71d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:44 GMT" - ], "Expires": [ "-1" ] @@ -541,7 +541,7 @@ ], "Names": { "CreateUpdateReset": [ - "delegationServer1797" + "delegationServer1353" ] }, "Variables": { @@ -549,7 +549,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DiagnosticTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DiagnosticTests/CreateListUpdateDelete.json index 7ea74384aac8..859a9ba2ce49 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DiagnosticTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DiagnosticTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5a02f621-fdae-4c5e-a949-e382cd7d9b28" + "abc4173d-c27a-4ff2-8a69-f2a68ce5339e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ed09ec5-6d5d-431b-adca-03c83b2c218d", - "276fd7ec-0434-4a02-9452-2d49916ebc69" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a00cdda0-3f38-4b0e-a55a-9e8e861012f5", + "90e56ec7-085c-40a5-8035-0b957cb257b3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "449dc886-0600-48f5-b2ba-2a137744a4f1" + "7349a6a6-721e-4385-9eeb-245f205c8d2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020442Z:449dc886-0600-48f5-b2ba-2a137744a4f1" + "WESTUS:20200207T010700Z:7349a6a6-721e-4385-9eeb-245f205c8d2c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:41 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d46a1cc4-1b59-4220-a22c-56694ccb1309" + "da61eead-ebce-4b00-89cd-d4d1a560a776" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abf68459-8591-44d7-a032-34809d97473f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "51e49365-04c1-4bca-a95e-45e7ad177755" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-correlation-request-id": [ - "44a139e7-e3f8-40f6-a0b3-a85e90dfda36" + "f3598fd6-50cc-4efc-a606-ebbf352b0f99" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020442Z:44a139e7-e3f8-40f6-a0b3-a85e90dfda36" + "WESTUS:20200207T010700Z:f3598fd6-50cc-4efc-a606-ebbf352b0f99" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:41 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcd8ab5f-d7ab-47bc-a3bb-a08262493ef3" + "417a32fd-dad7-4503-bc6b-e6e990051817" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "097f717d-e77a-4c8c-ae9b-5d05a539bbb0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "85cf50df-e723-44c0-9607-40338030d87d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-correlation-request-id": [ - "21fe4481-d542-4ef6-820b-857bf3d6cd10" + "63e061ba-fb35-4217-ba82-67902d10ed6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020442Z:21fe4481-d542-4ef6-820b-857bf3d6cd10" + "WESTUS:20200207T010701Z:63e061ba-fb35-4217-ba82-67902d10ed6c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:41 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,26 +199,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNzY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"8265566f-dafe-46a1-ba11-55c9ef4bbf14\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"566a99a7-0d6b-4018-bc22-21ee745cac5a\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "05d18b9a-9fee-495b-b433-af0b7e044360" + "aa5ac19a-4213-4858-b708-104e5cba6a22" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,38 +231,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcEg=\"" + "\"AAAAAAAAC2Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72ac59cb-e727-4489-81f0-c180c74aef8b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6579363c-c0b9-4916-8109-8ef361cdcfd7" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "0531a5be-7e7d-4187-991f-ebb86804f469" + "43131360-1fa8-40c1-ba49-781f5f449ce2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020443Z:0531a5be-7e7d-4187-991f-ebb86804f469" + "WESTUS:20200207T010704Z:43131360-1fa8-40c1-ba49-781f5f449ce2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:42 GMT" - ], "Content-Length": [ - "520" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,70 +271,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights2838\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea0bab597440f487b0da4}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights2764\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5e3cb8372393691028e5c6ae}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a5af08b5-6d3a-45c4-8368-98589a5830b0" + "3537b6b8-dd6c-48a8-9540-919e000183fe" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "217" + "225" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcEo=\"" + "\"AAAAAAAAC2g=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8c51479-a58e-4fe6-abda-de0a4cdd7662" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9bdd73d5-a8a9-4a36-aeeb-6c275b2ada0f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "5adff989-7ba5-46be-91e5-778ef56f3469" + "ae175a29-c67e-4879-975b-0d88e6945f0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020443Z:5adff989-7ba5-46be-91e5-778ef56f3469" + "WESTUS:20200207T010704Z:ae175a29-c67e-4879-975b-0d88e6945f0c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:42 GMT" - ], "Content-Length": [ - "660" + "718" ], "Content-Type": [ "application/json; charset=utf-8" @@ -343,73 +343,73 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": null,\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\",\r\n \"sampling\": null,\r\n \"frontend\": null,\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": null,\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764\",\r\n \"sampling\": null,\r\n \"frontend\": null,\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"enableHttpCorrelationHeaders\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"enableHttpCorrelationHeaders\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5e898d97-54b4-474b-ab06-6cc201a23444" + "29770c8d-fa1b-4d87-b2e3-14b8944900cb" ], "If-Match": [ - "\"AAAAAAAAcEo=\"" + "\"AAAAAAAAC2g=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1005" + "1013" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:05 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcE0=\"" + "\"AAAAAAAAC2s=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "474b1fab-0d7e-49b0-ba27-426f533cdcd7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3f97744e-d822-40fc-b1b0-f5d88a07dd64" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "1c7b85a1-5ee4-41b7-9df5-b541cf0c5b20" + "8c21f4c3-61ae-4271-9c14-b9dd6a5ccfd0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020443Z:1c7b85a1-5ee4-41b7-9df5-b541cf0c5b20" + "WESTUS:20200207T010705Z:8c21f4c3-61ae-4271-9c14-b9dd6a5ccfd0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:43 GMT" - ], "Content-Length": [ - "1313" + "1371" ], "Content-Type": [ "application/json; charset=utf-8" @@ -418,62 +418,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd43f24d-1a8c-46e9-b9c6-f52083610e19" + "2a2e6743-0a09-4afe-84a9-14dddd0cd928" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcEo=\"" + "\"AAAAAAAAC2g=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11d057a0-f83d-417b-b239-dd9799bf7100" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1e1c35b0-fa7c-4f06-bfd8-73109f948d4c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11989" ], "x-ms-correlation-request-id": [ - "c579c3cb-2f93-4366-802b-8316b5586ecb" + "0b968b26-aa64-4ee5-b957-d5b8c5a80d68" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020443Z:c579c3cb-2f93-4366-802b-8316b5586ecb" + "WESTUS:20200207T010704Z:0b968b26-aa64-4ee5-b957-d5b8c5a80d68" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:43 GMT" - ], "Content-Length": [ "0" ], @@ -485,55 +485,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd370d66-53e7-474a-a39c-47bbd3080979" + "815cc4b5-bd7c-4bcf-9958-9c498fde59ea" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55084f66-9845-49f3-a39a-1bc3e7fd5047" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5bd1b25f-abd4-4fe6-a85f-fcbd9cf7af39" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11988" ], "x-ms-correlation-request-id": [ - "d51fd7d0-85f2-455a-b61e-7925369a9612" + "228e525b-167d-4ce1-a63c-d5887ae8d36a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020444Z:d51fd7d0-85f2-455a-b61e-7925369a9612" + "WESTUS:20200207T010705Z:228e525b-167d-4ce1-a63c-d5887ae8d36a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:43 GMT" - ], "Content-Length": [ "0" ], @@ -545,121 +545,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27963f78-b96f-44d0-a7c6-7d6d407706e0" + "2ef1f035-fcc6-4c0b-8cb3-a6288fbfa954" ], "If-Match": [ - "\"AAAAAAAAcE0=\"" + "\"AAAAAAAAC2s=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "957aebbd-8c7d-46b4-8436-6e918d7b746c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "37a6e5a2-c655-4471-8713-d712de65e8de" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "2ba4c2fb-c2d3-40ea-91bb-530557a7615f" + "9945ce54-11b0-4f8d-a413-ee27ad7a1fad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020444Z:2ba4c2fb-c2d3-40ea-91bb-530557a7615f" + "WESTUS:20200207T010705Z:9945ce54-11b0-4f8d-a413-ee27ad7a1fad" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:43 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "111c8142-9d2d-4d89-bd00-ab8f8f041505" + "276bd5f4-2d37-4557-b437-6c5c199a7692" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f362b963-307c-45b0-ac7d-64e515620b25" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0962e7fb-15da-44d5-a5e6-8ff604c33676" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14993" ], "x-ms-correlation-request-id": [ - "6a05b347-7a7e-4edb-a46a-88e55483e643" + "57a05931-d51e-473b-b3fa-597dc40b119a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020445Z:6a05b347-7a7e-4edb-a46a-88e55483e643" + "WESTUS:20200207T010706Z:57a05931-d51e-473b-b3fa-597dc40b119a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:44 GMT" - ], "Expires": [ "-1" ] @@ -668,58 +668,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNzY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3deb1c66-3d05-4cdd-bf14-21ea532e3df5" + "6510f729-b947-4168-97a5-d4f60d8734ce" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:05 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcEg=\"" + "\"AAAAAAAAC2Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c4507e4-ede1-4272-bd24-ba7a04cc2a83" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4cc96218-f4e0-49c7-92c5-f88a04c423c9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11987" ], "x-ms-correlation-request-id": [ - "d98ac5f4-22b1-4bc3-a0d6-9f27cf04d2dd" + "ead5bdba-927e-457a-8dc1-76b081e392a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020444Z:d98ac5f4-22b1-4bc3-a0d6-9f27cf04d2dd" + "WESTUS:20200207T010705Z:ead5bdba-927e-457a-8dc1-76b081e392a2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:43 GMT" - ], "Content-Length": [ "0" ], @@ -731,55 +731,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNzY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c43d637a-3cd5-4168-99f9-ad6ff1ba6e21" + "7d4f4e85-22f7-4bab-b3e1-4c6fcb4febe6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5be34107-b47c-4415-b6c7-dc0862bdca5e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bab21b9e-0f4d-4427-9eb5-c5fda14ecbec" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11986" ], "x-ms-correlation-request-id": [ - "309aaebc-d71a-4d96-9d7d-ca0d501acf30" + "d320e0ab-0413-4475-81a2-7be63f037f2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020445Z:309aaebc-d71a-4d96-9d7d-ca0d501acf30" + "WESTUS:20200207T010706Z:d320e0ab-0413-4475-81a2-7be63f037f2e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:44 GMT" - ], "Content-Length": [ "0" ], @@ -791,121 +791,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNzY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de0a997d-2360-473e-8206-976f85ae527d" + "935f672c-b766-4fd4-bd1f-166259e1e5a8" ], "If-Match": [ - "\"AAAAAAAAcEg=\"" + "\"AAAAAAAAC2Y=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4fe0c3a-dae7-4d56-ab68-937ea81ce5f7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5fcc85d9-e67f-4a14-85ec-bcf1b0a3026c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14994" ], "x-ms-correlation-request-id": [ - "baa4c913-60d2-41bf-a221-d63f988087d6" + "6f3b8d31-f359-441c-8cf5-04fe59a1da09" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020445Z:baa4c913-60d2-41bf-a221-d63f988087d6" + "WESTUS:20200207T010706Z:6f3b8d31-f359-441c-8cf5-04fe59a1da09" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:44 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/appInsights2764?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwSW5zaWdodHMyNzY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8192e703-a2a7-4a8d-97b1-ccdbf7faf815" + "4debaad3-04b6-4d3a-9f6d-4f7f7906236a" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2265deb1-7903-4c72-9d42-d87912bfadf9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "07e34fe4-8b9a-4948-8d18-87f852d8d029" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14992" ], "x-ms-correlation-request-id": [ - "79028820-6455-4fce-99a4-ad79436d81ab" + "f1c94068-dc44-4334-be65-e73b8a5e7b14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020445Z:79028820-6455-4fce-99a4-ad79436d81ab" + "WESTUS:20200207T010706Z:f1c94068-dc44-4334-be65-e73b8a5e7b14" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:44 GMT" - ], "Expires": [ "-1" ] @@ -916,10 +916,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "appInsights2838" + "appInsights2764" ], "appInsights": [ - "8265566f-dafe-46a1-ba11-55c9ef4bbf14" + "566a99a7-0d6b-4018-bc22-21ee745cac5a" ] }, "Variables": { @@ -927,7 +927,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/EmailTemplateTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/EmailTemplateTests/CreateListUpdateDelete.json index d06c2c8b6ab2..bafeff8241ca 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/EmailTemplateTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/EmailTemplateTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7a45b720-54b7-4297-85b7-52cac3be6a3a" + "ed32f402-e66c-49d4-8d4d-21546c66a531" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76e393c8-b1cc-4df9-b3d6-0e862c6bd1f2", - "007599a7-d97f-48aa-ae8b-89556bf4acf3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11245946-2e3c-488e-99d8-69169fb24b19", + "dd60254e-fd3f-4284-a761-28ad65aca643" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "46fa7e73-43f3-4f00-836e-d69cc40948a1" + "8e3093ae-e518-4539-b5eb-cd5b584208a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020942Z:46fa7e73-43f3-4f00-836e-d69cc40948a1" + "WESTUS:20200207T005217Z:8e3093ae-e518-4539-b5eb-cd5b584208a6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:42 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b89580f0-f889-4fbf-a6b7-a26c4331dfc8" + "6a156ef8-d3f6-4a31-a3a8-c5568b969a93" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b9c4214-c686-444d-94c5-9dbe6d2c38d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ce01c7ed-cba2-415e-867d-32a3d591c955" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "4f56c135-e12a-4711-8726-c226d715c7c8" + "a4d16109-cfc6-44ea-a814-82f21ded0d78" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020942Z:4f56c135-e12a-4711-8726-c226d715c7c8" + "WESTUS:20200207T005217Z:a4d16109-cfc6-44ea-a814-82f21ded0d78" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:42 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbXBsYXRlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8271bf63-d032-4d5b-ab1b-74a06dcaa626" + "520b8f71-c3eb-47ef-a1b7-037b2a8e99a3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d68028d-95f4-4588-b590-5d28e70d10bf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4932d4cf-8822-4af5-ad55-2148daf06521" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "1b6c258b-3879-4f74-8bce-aa071f22f20b" + "c215339f-f660-4d9c-baa9-62d50ebe9fba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020942Z:1b6c258b-3879-4f74-8bce-aa071f22f20b" + "WESTUS:20200207T005218Z:c215339f-f660-4d9c-baa9-62d50ebe9fba" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:42 GMT" - ], "Content-Length": [ - "43363" + "43491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,26 +199,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your application $AppName is published in the application gallery\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/AccountClosedDeveloper\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"AccountClosedDeveloper\",\r\n \"properties\": {\r\n \"subject\": \"Thank you for using the $OrganizationName API!\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n On behalf of $OrganizationName and our customers we thank you for giving us a try. Your $OrganizationName API account is now closed.\\r\\n

\\r\\n

Thank you,

\\r\\n

Your $OrganizationName Team

\\r\\n $DevPortalUrl\\r\\n

\\r\\n \\r\\n\",\r\n \"title\": \"Developer farewell letter\",\r\n \"description\": \"Developers receive this farewell email after they close their account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/QuotaLimitApproachingDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"QuotaLimitApproachingDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"You are approaching an API quota limit\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n

Greetings $DevFirstName $DevLastName!

\\r\\n

\\r\\n You are approaching the quota limit on you subscription to the $ProdName product (primary key $SubPrimaryKey).\\r\\n #if ($QuotaResetDate != \\\"\\\")\\r\\n This quota will be renewed on $QuotaResetDate.\\r\\n #else\\r\\n This quota will not be renewed.\\r\\n #end\\r\\n

\\r\\n

Below are details on quota usage for the subscription:

\\r\\n

\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n #foreach ($api in $Apis)\\r\\n \\r\\n #foreach ($operation in $api.Operations)\\r\\n \\r\\n #end\\r\\n #end\\r\\n \\r\\n
Quota ScopeCallsCall QuotaBandwidthBandwidth Quota
Subscription\\r\\n #if ($CallsAlert == true)\\r\\n $Calls\\r\\n #else\\r\\n $Calls\\r\\n #end\\r\\n $CallQuota\\r\\n #if ($BandwidthAlert == true)\\r\\n $Bandwidth\\r\\n #else\\r\\n $Bandwidth\\r\\n #end\\r\\n $BandwidthQuota
API: $api.Name\\r\\n #if ($api.CallsAlert == true)\\r\\n $api.Calls\\r\\n #else\\r\\n $api.Calls\\r\\n #end\\r\\n $api.CallQuota\\r\\n #if ($api.BandwidthAlert == true)\\r\\n $api.Bandwidth\\r\\n #else\\r\\n $api.Bandwidth\\r\\n #end\\r\\n $api.BandwidthQuota
Operation: $operation.Name\\r\\n #if ($operation.CallsAlert == true)\\r\\n $operation.Calls\\r\\n #else\\r\\n $operation.Calls\\r\\n #end\\r\\n $operation.CallQuota\\r\\n #if ($operation.BandwidthAlert == true)\\r\\n $operation.Bandwidth\\r\\n #else\\r\\n $operation.Bandwidth\\r\\n #end\\r\\n $operation.BandwidthQuota
\\r\\n

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n $DevPortalUrl\\r\\n

\\r\\n \\r\\n\",\r\n \"title\": \"Developer quota limit approaching notification\",\r\n \"description\": \"Developers receive this email to alert them when they are approaching a quota limit.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubPrimaryKey\",\r\n \"title\": \"Primary Subscription key\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"QuotaResetDate\",\r\n \"title\": \"Quota reset date\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Welcome to the $OrganizationName API!\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter\\r\\n \\r\\n \\r\\n

\\r\\n Welcome to $OrganizationName API!

\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

Your $OrganizationName API program registration is completed and we are thrilled to have you as a customer. Here are a few important bits of information for your reference:

\\r\\n \\r\\n \\r\\n #if ($IdentityProvider == \\\"Basic\\\")\\r\\n \\r\\n #else\\r\\n \\r\\n #end\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n Please use the following username when signing into any of the ${OrganizationName}-hosted developer portals:\\r\\n $DevUsername\\r\\n Please use the following $IdentityProvider account when signing into any of the ${OrganizationName}-hosted developer portals:\\r\\n $DevUsername
\\r\\n We will direct all communications to the following email address:\\r\\n \\r\\n \\r\\n $DevEmail\\r\\n \\r\\n
\\r\\n

Best of luck in your API pursuits!

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n \\r\\n\",\r\n \"title\": \"Developer welcome letter\",\r\n \"description\": \"Developers receive this “welcome” email after they confirm their new account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevUsername\",\r\n \"title\": \"Developer user name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevEmail\",\r\n \"title\": \"Developer email\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IdentityProvider\",\r\n \"title\": \"Identity Provider selected by Organization\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/EmailChangeIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"EmailChangeIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Please confirm the new email associated with your $OrganizationName API account\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n

You are receiving this email because you made a change to the email address on your $OrganizationName API account.

\\r\\n

Please click on the following link to confirm the change:

\\r\\n

\\r\\n \\r\\n $ConfirmUrl\\r\\n \\r\\n

\\r\\n

If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Email change confirmation\",\r\n \"description\": \"Developers receive this email to confirm a new e-mail address after they change their existing one associated with their account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer confirmation URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalHost\",\r\n \"title\": \"Developer portal hostname\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmQuery\",\r\n \"title\": \"Query string part of the confirmation URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/InviteUserNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"InviteUserNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"You are invited to join the $OrganizationName developer network\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n Your account has been created. Please follow the link below to visit the $OrganizationName developer portal and claim it:\\r\\n

\\r\\n

\\r\\n $ConfirmUrl\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Invite user\",\r\n \"description\": \"An e-mail invitation to create an account, sent on request by API publishers.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Confirmation link\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalHost\",\r\n \"title\": \"Developer portal hostname\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmQuery\",\r\n \"title\": \"Query string part of the confirmation link\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewCommentNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewCommentNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"$IssueName issue has a new comment\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

This is a brief note to let you know that $CommenterFirstName $CommenterLastName made the following comment on the issue $IssueName you created:

\\r\\n

$CommentText

\\r\\n

\\r\\n To view the issue on the developer portal click here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"New comment added to an issue\",\r\n \"description\": \"Developers receive this email when someone comments on the issue they created on the Issues page of the developer portal.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommenterFirstName\",\r\n \"title\": \"Commenter first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommenterLastName\",\r\n \"title\": \"Commenter last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueId\",\r\n \"title\": \"Issue id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueName\",\r\n \"title\": \"Issue name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommentText\",\r\n \"title\": \"Comment text\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ConfirmSignUpIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ConfirmSignUpIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Please confirm your new $OrganizationName API account\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n

Thank you for joining the $OrganizationName API program! We host a growing number of cool APIs and strive to provide an awesome experience for API developers.

\\r\\n

First order of business is to activate your account and get you going. To that end, please click on the following link:

\\r\\n

\\r\\n \\r\\n $ConfirmUrl\\r\\n \\r\\n

\\r\\n

If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"New developer account confirmation\",\r\n \"description\": \"Developers receive this email to confirm their e-mail address after they sign up for a new account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer activation URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalHost\",\r\n \"title\": \"Developer portal hostname\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmQuery\",\r\n \"title\": \"Query string part of the activation URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewIssueNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewIssueNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your request $IssueName was received\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

Thank you for contacting us. Our API team will review your issue and get back to you soon.

\\r\\n

\\r\\n Click this link to view or edit your request.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"New issue received\",\r\n \"description\": \"This email is sent to developers after they create a new topic on the Issues page of the developer portal.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueId\",\r\n \"title\": \"Issue id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueName\",\r\n \"title\": \"Issue name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PurchaseDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PurchaseDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription to the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Greetings $DevFirstName $DevLastName!

\\r\\n

\\r\\n Thank you for subscribing to the $ProdName and welcome to the $OrganizationName developer community. We are delighted to have you as part of the team and are looking forward to the amazing applications you will build using our API!\\r\\n

\\r\\n

Below are a few subscription details for your reference:

\\r\\n

\\r\\n

    \\r\\n #if ($SubStartDate != \\\"\\\")\\r\\n
  • Start date: $SubStartDate
  • \\r\\n #end\\r\\n \\r\\n #if ($SubTerm != \\\"\\\")\\r\\n
  • Subscription term: $SubTerm
  • \\r\\n #end\\r\\n
\\r\\n

\\r\\n

\\r\\n Visit the developer profile area to manage your subscription and subscription keys\\r\\n

\\r\\n

A couple of pointers to help get you started:

\\r\\n

\\r\\n \\r\\n Learn about the API\\r\\n \\r\\n

\\r\\n

The API documentation provides all information necessary to make a request and to process a response. Code samples are provided per API operation in a variety of languages. Moreover, an interactive console allows making API calls directly from the developer portal without writing any code.

\\r\\n

\\r\\n \\r\\n Feature your app in the app gallery\\r\\n \\r\\n

\\r\\n

You can publish your application on our gallery for increased visibility to potential new users.

\\r\\n

\\r\\n \\r\\n Stay in touch\\r\\n \\r\\n

\\r\\n

\\r\\n If you have an issue, a question, a suggestion, a request, or if you just want to tell us something, go to the Issues page on the developer portal and create a new topic.\\r\\n

\\r\\n

Happy hacking,

\\r\\n

The $OrganizationName API Team

\\r\\n $DevPortalUrl\\r\\n \\r\\n\",\r\n \"title\": \"New subscription activated\",\r\n \"description\": \"Developers receive this acknowledgement email after subscribing to a product.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdId\",\r\n \"title\": \"Product ID\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubStartDate\",\r\n \"title\": \"Subscription start date\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubTerm\",\r\n \"title\": \"Subscription term\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PasswordResetIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PasswordResetIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Your password change request\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n

You are receiving this email because you requested to change the password on your $OrganizationName API account.

\\r\\n

Please click on the link below and follow instructions to create your new password:

\\r\\n

\\r\\n \\r\\n $ConfirmUrl\\r\\n \\r\\n

\\r\\n

If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Password change confirmation\",\r\n \"description\": \"Developers receive this email when they request a password change of their account. The purpose of the email is to verify that the account owner made the request and to provide a one-time perishable URL for changing the password.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer new password instruction URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalHost\",\r\n \"title\": \"Developer portal hostname\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmQuery\",\r\n \"title\": \"Query string part of the instruction URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PasswordResetByAdminNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PasswordResetByAdminNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your password was reset\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n

The password of your $OrganizationName API account has been reset, per your request.

\\r\\n

\\r\\n Your new password is: $DevPassword

\\r\\n

Please make sure to change it next time you sign in.

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Password reset by publisher notification (Password reset by admin)\",\r\n \"description\": \"Developers receive this email when the publisher resets their password.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPassword\",\r\n \"title\": \"New Developer password\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/RejectDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"RejectDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription request for the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We would like to inform you that we reviewed your subscription request for the $ProdName.\\r\\n

\\r\\n #if ($SubDeclineReason == \\\"\\\")\\r\\n

Regretfully, we were unable to approve it, as subscriptions are temporarily suspended at this time.

\\r\\n #else\\r\\n

\\r\\n Regretfully, we were unable to approve it at this time for the following reason:\\r\\n

$SubDeclineReason

\\r\\n #end\\r\\n

We truly appreciate your interest.

All the best,

The $OrganizationName API Team

$DevPortalUrl\\r\\n\",\r\n \"title\": \"Subscription request declined\",\r\n \"description\": \"This email is sent to developers when their subscription requests for products requiring publisher approval is declined.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubDeclineReason\",\r\n \"title\": \"Reason for declining subscription\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/RequestDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"RequestDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription request for the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n Thank you for your interest in our $ProdName API product!\\r\\n

\\r\\n

\\r\\n We were delighted to receive your subscription request. We will promptly review it and get back to you at $DevEmail.\\r\\n

\\r\\n

Thank you,

\\r\\n

The $OrganizationName API Team

\\r\\n $DevPortalUrl\\r\\n \\r\\n\",\r\n \"title\": \"Subscription request received\",\r\n \"description\": \"This email is sent to developers to acknowledge receipt of their subscription requests for products requiring publisher approval.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevEmail\",\r\n \"title\": \"Developer email\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your application $AppName is published in the application gallery\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/AccountClosedDeveloper\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"AccountClosedDeveloper\",\r\n \"properties\": {\r\n \"subject\": \"Thank you for using the $OrganizationName API!\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n On behalf of $OrganizationName and our customers we thank you for giving us a try. Your $OrganizationName API account is now closed.\\r\\n

\\r\\n

Thank you,

\\r\\n

Your $OrganizationName Team

\\r\\n $DevPortalUrl\\r\\n

\\r\\n \\r\\n\",\r\n \"title\": \"Developer farewell letter\",\r\n \"description\": \"Developers receive this farewell email after they close their account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/QuotaLimitApproachingDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"QuotaLimitApproachingDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"You are approaching an API quota limit\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n

Greetings $DevFirstName $DevLastName!

\\r\\n

\\r\\n You are approaching the quota limit on you subscription to the $ProdName product (primary key $SubPrimaryKey).\\r\\n #if ($QuotaResetDate != \\\"\\\")\\r\\n This quota will be renewed on $QuotaResetDate.\\r\\n #else\\r\\n This quota will not be renewed.\\r\\n #end\\r\\n

\\r\\n

Below are details on quota usage for the subscription:

\\r\\n

\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n #foreach ($api in $Apis)\\r\\n \\r\\n #foreach ($operation in $api.Operations)\\r\\n \\r\\n #end\\r\\n #end\\r\\n \\r\\n
Quota ScopeCallsCall QuotaBandwidthBandwidth Quota
Subscription\\r\\n #if ($CallsAlert == true)\\r\\n $Calls\\r\\n #else\\r\\n $Calls\\r\\n #end\\r\\n $CallQuota\\r\\n #if ($BandwidthAlert == true)\\r\\n $Bandwidth\\r\\n #else\\r\\n $Bandwidth\\r\\n #end\\r\\n $BandwidthQuota
API: $api.Name\\r\\n #if ($api.CallsAlert == true)\\r\\n $api.Calls\\r\\n #else\\r\\n $api.Calls\\r\\n #end\\r\\n $api.CallQuota\\r\\n #if ($api.BandwidthAlert == true)\\r\\n $api.Bandwidth\\r\\n #else\\r\\n $api.Bandwidth\\r\\n #end\\r\\n $api.BandwidthQuota
Operation: $operation.Name\\r\\n #if ($operation.CallsAlert == true)\\r\\n $operation.Calls\\r\\n #else\\r\\n $operation.Calls\\r\\n #end\\r\\n $operation.CallQuota\\r\\n #if ($operation.BandwidthAlert == true)\\r\\n $operation.Bandwidth\\r\\n #else\\r\\n $operation.Bandwidth\\r\\n #end\\r\\n $operation.BandwidthQuota
\\r\\n

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n $DevPortalUrl\\r\\n

\\r\\n \\r\\n\",\r\n \"title\": \"Developer quota limit approaching notification\",\r\n \"description\": \"Developers receive this email to alert them when they are approaching a quota limit.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubPrimaryKey\",\r\n \"title\": \"Primary Subscription key\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"QuotaResetDate\",\r\n \"title\": \"Quota reset date\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/NewDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Welcome to the $OrganizationName API!\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter\\r\\n \\r\\n \\r\\n

\\r\\n Welcome to $OrganizationName API!

\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

Your $OrganizationName API program registration is completed and we are thrilled to have you as a customer. Here are a few important bits of information for your reference:

\\r\\n \\r\\n \\r\\n #if ($IdentityProvider == \\\"Basic\\\")\\r\\n \\r\\n #else\\r\\n \\r\\n #end\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n Please use the following username when signing into any of the ${OrganizationName}-hosted developer portals:\\r\\n $DevUsername\\r\\n Please use the following $IdentityProvider account when signing into any of the ${OrganizationName}-hosted developer portals:\\r\\n $DevUsername
\\r\\n We will direct all communications to the following email address:\\r\\n \\r\\n \\r\\n $DevEmail\\r\\n \\r\\n
\\r\\n

Best of luck in your API pursuits!

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n \\r\\n\",\r\n \"title\": \"Developer welcome letter\",\r\n \"description\": \"Developers receive this “welcome” email after they confirm their new account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevUsername\",\r\n \"title\": \"Developer user name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevEmail\",\r\n \"title\": \"Developer email\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IdentityProvider\",\r\n \"title\": \"Identity Provider selected by Organization\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/EmailChangeIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"EmailChangeIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Please confirm the new email associated with your $OrganizationName API account\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n

You are receiving this email because you made a change to the email address on your $OrganizationName API account.

\\r\\n

Please click on the following link to confirm the change:

\\r\\n

\\r\\n \\r\\n $ConfirmUrl\\r\\n \\r\\n

\\r\\n

If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Email change confirmation\",\r\n \"description\": \"Developers receive this email to confirm a new e-mail address after they change their existing one associated with their account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer confirmation URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalHost\",\r\n \"title\": \"Developer portal hostname\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmQuery\",\r\n \"title\": \"Query string part of the confirmation URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/InviteUserNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"InviteUserNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"You are invited to join the $OrganizationName developer network\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n Your account has been created. Please follow the link below to visit the $OrganizationName developer portal and claim it:\\r\\n

\\r\\n

\\r\\n $ConfirmUrl\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Invite user\",\r\n \"description\": \"An e-mail invitation to create an account, sent on request by API publishers.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Confirmation link\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalHost\",\r\n \"title\": \"Developer portal hostname\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmQuery\",\r\n \"title\": \"Query string part of the confirmation link\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/NewCommentNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewCommentNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"$IssueName issue has a new comment\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

This is a brief note to let you know that $CommenterFirstName $CommenterLastName made the following comment on the issue $IssueName you created:

\\r\\n

$CommentText

\\r\\n

\\r\\n To view the issue on the developer portal click here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"New comment added to an issue\",\r\n \"description\": \"Developers receive this email when someone comments on the issue they created on the Issues page of the developer portal.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommenterFirstName\",\r\n \"title\": \"Commenter first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommenterLastName\",\r\n \"title\": \"Commenter last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueId\",\r\n \"title\": \"Issue id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueName\",\r\n \"title\": \"Issue name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommentText\",\r\n \"title\": \"Comment text\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ConfirmSignUpIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ConfirmSignUpIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Please confirm your new $OrganizationName API account\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n

Thank you for joining the $OrganizationName API program! We host a growing number of cool APIs and strive to provide an awesome experience for API developers.

\\r\\n

First order of business is to activate your account and get you going. To that end, please click on the following link:

\\r\\n

\\r\\n \\r\\n $ConfirmUrl\\r\\n \\r\\n

\\r\\n

If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"New developer account confirmation\",\r\n \"description\": \"Developers receive this email to confirm their e-mail address after they sign up for a new account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer activation URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalHost\",\r\n \"title\": \"Developer portal hostname\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmQuery\",\r\n \"title\": \"Query string part of the activation URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/NewIssueNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewIssueNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your request $IssueName was received\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

Thank you for contacting us. Our API team will review your issue and get back to you soon.

\\r\\n

\\r\\n Click this link to view or edit your request.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"New issue received\",\r\n \"description\": \"This email is sent to developers after they create a new topic on the Issues page of the developer portal.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueId\",\r\n \"title\": \"Issue id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueName\",\r\n \"title\": \"Issue name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/PurchaseDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PurchaseDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription to the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Greetings $DevFirstName $DevLastName!

\\r\\n

\\r\\n Thank you for subscribing to the $ProdName and welcome to the $OrganizationName developer community. We are delighted to have you as part of the team and are looking forward to the amazing applications you will build using our API!\\r\\n

\\r\\n

Below are a few subscription details for your reference:

\\r\\n

\\r\\n

    \\r\\n #if ($SubStartDate != \\\"\\\")\\r\\n
  • Start date: $SubStartDate
  • \\r\\n #end\\r\\n \\r\\n #if ($SubTerm != \\\"\\\")\\r\\n
  • Subscription term: $SubTerm
  • \\r\\n #end\\r\\n
\\r\\n

\\r\\n

\\r\\n Visit the developer profile area to manage your subscription and subscription keys\\r\\n

\\r\\n

A couple of pointers to help get you started:

\\r\\n

\\r\\n \\r\\n Learn about the API\\r\\n \\r\\n

\\r\\n

The API documentation provides all information necessary to make a request and to process a response. Code samples are provided per API operation in a variety of languages. Moreover, an interactive console allows making API calls directly from the developer portal without writing any code.

\\r\\n

\\r\\n \\r\\n Feature your app in the app gallery\\r\\n \\r\\n

\\r\\n

You can publish your application on our gallery for increased visibility to potential new users.

\\r\\n

\\r\\n \\r\\n Stay in touch\\r\\n \\r\\n

\\r\\n

\\r\\n If you have an issue, a question, a suggestion, a request, or if you just want to tell us something, go to the Issues page on the developer portal and create a new topic.\\r\\n

\\r\\n

Happy hacking,

\\r\\n

The $OrganizationName API Team

\\r\\n $DevPortalUrl\\r\\n \\r\\n\",\r\n \"title\": \"New subscription activated\",\r\n \"description\": \"Developers receive this acknowledgement email after subscribing to a product.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdId\",\r\n \"title\": \"Product ID\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubStartDate\",\r\n \"title\": \"Subscription start date\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubTerm\",\r\n \"title\": \"Subscription term\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/PasswordResetIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PasswordResetIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Your password change request\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n

You are receiving this email because you requested to change the password on your $OrganizationName API account.

\\r\\n

Please click on the link below and follow instructions to create your new password:

\\r\\n

\\r\\n \\r\\n $ConfirmUrl\\r\\n \\r\\n

\\r\\n

If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Password change confirmation\",\r\n \"description\": \"Developers receive this email when they request a password change of their account. The purpose of the email is to verify that the account owner made the request and to provide a one-time perishable URL for changing the password.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer new password instruction URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalHost\",\r\n \"title\": \"Developer portal hostname\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmQuery\",\r\n \"title\": \"Query string part of the instruction URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/PasswordResetByAdminNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PasswordResetByAdminNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your password was reset\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n

The password of your $OrganizationName API account has been reset, per your request.

\\r\\n

\\r\\n Your new password is: $DevPassword

\\r\\n

Please make sure to change it next time you sign in.

\\r\\n

Thank you,

\\r\\n

$OrganizationName API Team

\\r\\n

\\r\\n $DevPortalUrl\\r\\n

\\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Password reset by publisher notification (Password reset by admin)\",\r\n \"description\": \"Developers receive this email when the publisher resets their password.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPassword\",\r\n \"title\": \"New Developer password\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/RejectDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"RejectDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription request for the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We would like to inform you that we reviewed your subscription request for the $ProdName.\\r\\n

\\r\\n #if ($SubDeclineReason == \\\"\\\")\\r\\n

Regretfully, we were unable to approve it, as subscriptions are temporarily suspended at this time.

\\r\\n #else\\r\\n

\\r\\n Regretfully, we were unable to approve it at this time for the following reason:\\r\\n

$SubDeclineReason

\\r\\n #end\\r\\n

We truly appreciate your interest.

All the best,

The $OrganizationName API Team

$DevPortalUrl\\r\\n\",\r\n \"title\": \"Subscription request declined\",\r\n \"description\": \"This email is sent to developers when their subscription requests for products requiring publisher approval is declined.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubDeclineReason\",\r\n \"title\": \"Reason for declining subscription\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/RequestDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"RequestDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription request for the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n Thank you for your interest in our $ProdName API product!\\r\\n

\\r\\n

\\r\\n We were delighted to receive your subscription request. We will promptly review it and get back to you at $DevEmail.\\r\\n

\\r\\n

Thank you,

\\r\\n

The $OrganizationName API Team

\\r\\n $DevPortalUrl\\r\\n \\r\\n\",\r\n \"title\": \"Subscription request received\",\r\n \"description\": \"This email is sent to developers to acknowledge receipt of their subscription requests for products requiring publisher approval.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevEmail\",\r\n \"title\": \"Developer email\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 14\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbXBsYXRlcy9BcHBsaWNhdGlvbkFwcHJvdmVkTm90aWZpY2F0aW9uTWVzc2FnZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"subject\": \"New Subject\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "451cf811-7f04-44bb-8b90-c00b207aa46e" + "c66871ef-50ca-426f-a19e-0fe07f7620ac" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,38 +231,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:17 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcTc=\"" + "\"AAAAAAAACQw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b32ca0b-5725-4f90-99d6-df151fc3cd9f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f2d7eb1d-96cf-45b7-ba7c-515e91d070e3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "58414459-3410-4b44-9e87-f7730901922b" + "2d385af6-3d89-4bcf-b951-3f9801ab0857" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020943Z:58414459-3410-4b44-9e87-f7730901922b" + "WESTUS:20200207T005218Z:2d385af6-3d89-4bcf-b951-3f9801ab0857" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:43 GMT" - ], "Content-Length": [ - "2078" + "2086" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,64 +271,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"New Subject\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": false,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"New Subject\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": false,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbXBsYXRlcy9BcHBsaWNhdGlvbkFwcHJvdmVkTm90aWZpY2F0aW9uTWVzc2FnZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18fc6020-0192-4f2b-bc19-effed9b1c049" + "5c3948d0-b0aa-497d-b946-3ed5a7b08b96" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcTc=\"" + "\"AAAAAAAACQw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "20625215-8cf6-427f-9309-7eff8f92f2e0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2406baaa-bb44-4909-8ac3-272a1ced1141" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "d7214ad9-8f67-4fa7-868a-97c6e1b5f152" + "7b373ac9-7958-41fe-b2d5-d173a49ee390" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020943Z:d7214ad9-8f67-4fa7-868a-97c6e1b5f152" + "WESTUS:20200207T005218Z:7b373ac9-7958-41fe-b2d5-d173a49ee390" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:43 GMT" - ], "Content-Length": [ - "2078" + "2086" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,64 +337,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"New Subject\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": false,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"New Subject\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": false,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbXBsYXRlcy9BcHBsaWNhdGlvbkFwcHJvdmVkTm90aWZpY2F0aW9uTWVzc2FnZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50af06b3-9013-473e-bb50-9b8eaf972b4d" + "f9338419-f3c3-46dd-841e-91890f6183fd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAAAAA=\"" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f538863-14bd-4914-8086-5fcce9d0f69c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f4a100da-5ad9-4584-8178-bbbe8fbfe6be" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "fd50dd38-9b3f-4c00-a37a-cb4a2253c38c" + "a8480267-b3c3-4933-b0e3-7449a9305884" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020944Z:fd50dd38-9b3f-4c00-a37a-cb4a2253c38c" + "WESTUS:20200207T005219Z:a8480267-b3c3-4933-b0e3-7449a9305884" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:44 GMT" - ], "Content-Length": [ - "2131" + "2139" ], "Content-Type": [ "application/json; charset=utf-8" @@ -403,125 +403,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your application $AppName is published in the application gallery\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your application $AppName is published in the application gallery\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n

Dear $DevFirstName $DevLastName,

\\r\\n

\\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here.\\r\\n

\\r\\n

Best,

\\r\\n

The $OrganizationName API Team

\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbXBsYXRlcy9BcHBsaWNhdGlvbkFwcHJvdmVkTm90aWZpY2F0aW9uTWVzc2FnZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a50ea517-0cb1-462a-9f04-a6a176d58204" + "5c2ceb05-d2ed-4dba-af45-769ea4bf9174" ], "If-Match": [ - "\"AAAAAAAAcTc=\"" + "\"AAAAAAAACQw=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c80a7173-1a1f-42d5-aa88-952242d2cf8c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "783ace25-584c-4dfb-b993-a931f3c46d4c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "01555104-9118-420c-a0a0-270bae1ee45f" + "e3c5eeae-e078-4209-81ec-e99edd991b9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020944Z:01555104-9118-420c-a0a0-270bae1ee45f" + "WESTUS:20200207T005219Z:e3c5eeae-e078-4209-81ec-e99edd991b9b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:43 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbXBsYXRlcy9BcHBsaWNhdGlvbkFwcHJvdmVkTm90aWZpY2F0aW9uTWVzc2FnZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb47f0ac-c6c7-46cc-99f1-750a5f0e543a" + "aba79711-453c-41b2-ad6f-bcd453020c16" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46497eaf-437d-4f1f-9aa3-5bb52d9c6dfd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0748663e-755f-4fd5-8905-70c595567a98" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "0f011f31-0cb9-48e4-9597-758d2943d23e" + "c44ecc65-05ca-43d0-b325-5d80fe37310f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020944Z:0f011f31-0cb9-48e4-9597-758d2943d23e" + "WESTUS:20200207T005219Z:c44ecc65-05ca-43d0-b325-5d80fe37310f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:44 GMT" - ], "Expires": [ "-1" ] @@ -536,7 +536,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/GroupTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/GroupTests/CreateListUpdateDelete.json index 826eaa910d94..d2f7ee3a5bed 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/GroupTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/GroupTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "796a4548-be89-4ae8-94a4-f383ec6c31aa" + "3e24713e-e1d0-4fac-bf4d-50665d4d9b6b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9968311-8fa5-4ff8-a078-5237067a3cc5", - "fba224a9-a636-48f9-9363-738b51dbe1bd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "03fd680b-3ac1-4700-ae9b-aa6d2c7147ab", + "d4849595-9cb0-4751-afd7-37cdc36b6f4e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "0e4c4db4-3279-4012-884e-3d7272a58326" + "54cf9137-e68c-4be8-ba4d-0886e9ecd796" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020654Z:0e4c4db4-3279-4012-884e-3d7272a58326" + "WESTUS:20200207T010153Z:54cf9137-e68c-4be8-ba4d-0886e9ecd796" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:53 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05d0c420-e6d0-402f-a2c3-7f99ba0615b7" + "c57d6a08-261d-4517-a766-d8c46dd2a4fe" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e02cb860-d143-43d6-9168-4abf82afb519" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d438db5d-69cb-4f12-a08e-92291ca19825" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "27e77fa6-4e46-40e3-ac05-3b6984550f90" + "cb375761-4297-4c41-96c1-9a87df162050" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020654Z:27e77fa6-4e46-40e3-ac05-3b6984550f90" + "WESTUS:20200207T010154Z:cb375761-4297-4c41-96c1-9a87df162050" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:54 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d184f5db-7a6b-463c-87ce-9c50af2650db" + "e5ef742f-203c-4b8f-a9cf-995ad4adeacb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6fc5d0f-70fa-44d2-9f4a-2d02d54359e3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c60e0c57-6db5-4510-a92d-22bb1da98594" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "5b94de84-c68c-465c-9e31-b260c1b4c790" + "b909cfde-7194-443b-b05f-e2558f741738" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020655Z:5b94de84-c68c-465c-9e31-b260c1b4c790" + "WESTUS:20200207T010154Z:b909cfde-7194-443b-b05f-e2558f741738" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:54 GMT" - ], "Content-Length": [ - "1796" + "1835" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ab66d8d-f3ae-4723-83b7-ae80548b6426" + "20afaea6-f205-4f83-91ad-e0ba0f0fa965" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a1c7981-e4ed-41b6-b4cb-9c2d00b20d3f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ef80da04-3f8c-4466-a655-dc0b994cf6df" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "704450fa-184b-46ff-ab6e-eba9d7b6a6ad" + "01589f85-b6c7-479e-9254-ea9d805f6412" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020655Z:704450fa-184b-46ff-ab6e-eba9d7b6a6ad" + "WESTUS:20200207T010154Z:01589f85-b6c7-479e-9254-ea9d805f6412" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:54 GMT" - ], "Content-Length": [ - "881" + "912" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,26 +262,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkNjcyMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8083\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup4651\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b833875f-8578-4183-bab1-d8ba0c98ab2b" + "5dfa2b2e-28b0-4c8e-bd66-4b552838a3f7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,38 +294,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:54 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcJY=\"" + "\"AAAAAAAACqo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7b095e4-58ce-41a9-b679-f6993b279e5e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "35b1451e-f376-44d3-bfd8-27cc0fff82f2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "43c0bb07-c0ab-428e-957e-e7e9336e5d20" + "f5f9b4e4-4419-4230-8226-44c4bfe64071" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020656Z:43c0bb07-c0ab-428e-957e-e7e9336e5d20" + "WESTUS:20200207T010154Z:f5f9b4e4-4419-4230-8226-44c4bfe64071" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:55 GMT" - ], "Content-Length": [ - "447" + "457" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,62 +334,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId487\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8083\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId6720\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup4651\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkNjcyMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c1664ff-a483-44e6-8c29-36dcbe4d3009" + "e23e109f-2c9a-4dc5-bf2e-8729cfbf2e04" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:54 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcJY=\"" + "\"AAAAAAAACqo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "999e50e6-6cd0-4c6a-80c3-1da0fa10909d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "66939780-7af0-4fae-8619-9c3d15e286d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "f0856c7c-f9cd-43d5-9d67-231ca79655aa" + "927369fd-8911-4ba3-81ea-afb1916ea24e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020656Z:f0856c7c-f9cd-43d5-9d67-231ca79655aa" + "WESTUS:20200207T010154Z:927369fd-8911-4ba3-81ea-afb1916ea24e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:55 GMT" - ], "Content-Length": [ "0" ], @@ -401,58 +401,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkNjcyMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46264a5d-56b4-415d-a086-16266ff8e03a" + "06d49f8b-551f-43ee-b4ec-25edef22a654" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:54 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcJg=\"" + "\"AAAAAAAACqw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "815958da-1ea5-46d2-b0f7-3834bec928c7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e58e3295-9f2b-457e-9bb9-096b645edba7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "adef2513-f09a-4870-8518-008dd9f60b5b" + "aa35a2b8-b79b-4b4e-a03d-2fd5b61d3852" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020656Z:adef2513-f09a-4870-8518-008dd9f60b5b" + "WESTUS:20200207T010155Z:aa35a2b8-b79b-4b4e-a03d-2fd5b61d3852" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:55 GMT" - ], "Content-Length": [ "0" ], @@ -464,25 +464,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkNjcyMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updating the description of the Sdk\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b613e4f2-13cf-4b3f-8a63-b674763cbb5a" + "047220bb-0075-463f-9859-b28ee99dada3" ], "If-Match": [ - "\"AAAAAAAAcJY=\"" + "\"AAAAAAAACqo=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,33 +495,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b07e86f7-1476-4b7e-a1c5-6ab70e80acf4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "75ebcfa0-b0b4-4bde-8ae1-af9a77be71a2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "84080f1d-373c-44cb-ad26-349de82745d1" + "f27bf268-8b76-4896-9f8d-e102e8c153f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020656Z:84080f1d-373c-44cb-ad26-349de82745d1" + "WESTUS:20200207T010155Z:f27bf268-8b76-4896-9f8d-e102e8c153f1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:55 GMT" - ], "Expires": [ "-1" ] @@ -530,60 +530,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkNjcyMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1774b6b3-ffb7-4153-8ec3-3d85e4224f59" + "27136835-3585-4635-ba78-40a0edffebe6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:54 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcJg=\"" + "\"AAAAAAAACqw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d32e3a69-4762-4d57-9573-c696a159c9c5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f1fcac6e-7908-4752-9749-bc94be518dd3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "3f87b97d-e37c-4768-9ccf-b01e13f6de77" + "1e319df4-6870-44ba-b055-99ff8dd51c7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020656Z:3f87b97d-e37c-4768-9ccf-b01e13f6de77" + "WESTUS:20200207T010155Z:1e319df4-6870-44ba-b055-99ff8dd51c7f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:55 GMT" - ], "Content-Length": [ - "453" + "463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -592,59 +592,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId487\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8083\",\r\n \"description\": \"Updating the description of the Sdk\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId6720\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup4651\",\r\n \"description\": \"Updating the description of the Sdk\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkNjcyMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c006ee46-d92f-4f97-b82c-694ca131a8fb" + "00c00f3c-9d30-4d85-a402-cd6293f72e6f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18f2fe3d-8520-449f-9684-0ac5756ffa10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "238add23-b95c-49f0-b783-9c38e8208cb8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "e5df0b6a-fdfe-4387-85a4-45ec4018437d" + "d752923b-16cf-40b9-9e7c-ed91aa518fd2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020656Z:e5df0b6a-fdfe-4387-85a4-45ec4018437d" + "WESTUS:20200207T010155Z:d752923b-16cf-40b9-9e7c-ed91aa518fd2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:55 GMT" - ], "Content-Length": [ "81" ], @@ -659,121 +659,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkNjcyMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "236e53d5-171f-411d-85e1-977304daf363" + "dc42f699-5d13-4b18-a5f7-67b9369cc701" ], "If-Match": [ - "\"AAAAAAAAcJg=\"" + "\"AAAAAAAACqw=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e8834f7-97f7-4fa7-b0da-8180da4aa2c8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "41d02ba9-add3-460d-8d00-f9d10fcb4836" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "d7743fd1-74fd-4818-b33d-e83a691947a8" + "1f060dce-143b-41ac-8ddc-a3d51281e8cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020656Z:d7743fd1-74fd-4818-b33d-e83a691947a8" + "WESTUS:20200207T010155Z:1f060dce-143b-41ac-8ddc-a3d51281e8cd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:55 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId6720?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkNjcyMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5197f2d-4582-4254-83b6-8e3697770aae" + "f43ec318-8daf-45a7-8ac6-b35cc1ba0f73" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a58ccafa-b548-4e80-8e94-64bea6c0ac75" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8e3174f1-5d9f-433b-9303-66b730506d7f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "6555b309-d52b-4c60-8e1f-d54a0a7f1325" + "ee946602-69c1-411f-b6a2-1514280bd927" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020657Z:6555b309-d52b-4c60-8e1f-d54a0a7f1325" + "WESTUS:20200207T010155Z:ee946602-69c1-411f-b6a2-1514280bd927" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:56 GMT" - ], "Expires": [ "-1" ] @@ -784,8 +784,8 @@ ], "Names": { "CreateListUpdateDelete": [ - "sdkGroupId487", - "sdkGroup8083" + "sdkGroupId6720", + "sdkGroup4651" ] }, "Variables": { @@ -793,7 +793,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/GroupUserTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/GroupUserTests/CreateListUpdateDelete.json index 3dd11f0b7db1..2bdda04edb78 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/GroupUserTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/GroupUserTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f49b20-5595-4d57-845c-bbfc1c6859c2" + "da4ea771-67f1-4921-979d-79b4185830b1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae58f6bd-da34-433c-be48-6b746d96fb45", - "8133a951-2318-44c2-a712-5eeceeb71807" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e7144c69-dbbb-43d3-be6c-89abdd92ba1b", + "73921ed6-326b-4b7f-b145-279e77ec1e51" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "723b35f1-2f82-4ec9-88e7-4d0346ad23d6" + "768ca32b-2b8c-459b-8f0f-b1b54ed7537d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020452Z:723b35f1-2f82-4ec9-88e7-4d0346ad23d6" + "WESTUS:20200207T005708Z:768ca32b-2b8c-459b-8f0f-b1b54ed7537d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:52 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c0b998e-49d7-459c-bde0-55790523eb5d" + "a216183d-b7a7-4020-8ebf-679ccf9a3f53" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77103ceb-10db-476d-9b01-1c4da5785495" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "290423f8-dc42-47e2-bda9-bad2dacd2ebc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "6ebe1ac8-6411-47bf-a8cf-aa8f55160ac8" + "7df390e1-115a-4e71-bd79-cc7b1fe83d2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020453Z:6ebe1ac8-6411-47bf-a8cf-aa8f55160ac8" + "WESTUS:20200207T005708Z:7df390e1-115a-4e71-bd79-cc7b1fe83d2a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:52 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkMTI0NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup9018\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup5722\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "43d751ea-4417-4592-a34d-d5699d0e034c" + "d6bfbfd9-7482-4382-8054-b9fdadf8752c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +168,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:08 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcFk=\"" + "\"AAAAAAAACZI=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1dc56ec7-6339-4996-bd50-f05d1effd2bb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "47f024ab-bb17-4f4e-bd02-9e6e23205559" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "88130fd5-125c-48bd-915f-7f05d01dce99" + "dcb4a608-65e1-458f-b99a-f880e2932d82" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020454Z:88130fd5-125c-48bd-915f-7f05d01dce99" + "WESTUS:20200207T005708Z:dcb4a608-65e1-458f-b99a-f880e2932d82" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:53 GMT" - ], "Content-Length": [ - "449" + "457" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,61 +208,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId2653\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup9018\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId1245\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup5722\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkMTI0NS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8ee57e1-bf84-44ca-92eb-5c7ded2cdc5d" + "e1237e33-245c-49b4-b29e-05809dc262cb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85010c44-b419-4c45-b3d7-5f1dbbbc7f91" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "205022b7-3167-4b9a-b646-84760af9c4f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "e61e76fb-7d18-4590-8cff-6c45001a7deb" + "2a9386a9-fc58-45e1-9308-3bb214e0b691" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020454Z:e61e76fb-7d18-4590-8cff-6c45001a7deb" + "WESTUS:20200207T005709Z:2a9386a9-fc58-45e1-9308-3bb214e0b691" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:53 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,61 +271,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkMTI0NS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59abaec5-c359-4dab-80a8-5973a4abec0e" + "52d75868-250c-4711-bb1c-a85891a549a1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab75c97a-67d2-41ad-a4da-ff4982e18782" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "125c7041-06e8-4338-bb1b-289f3eb22537" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "37f8825e-c888-4d59-aa4b-1c8e379762ff" + "d5ee5f5d-1758-416b-aae5-b267a3e0d244" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020455Z:37f8825e-c888-4d59-aa4b-1c8e379762ff" + "WESTUS:20200207T005711Z:d5ee5f5d-1758-416b-aae5-b267a3e0d244" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:54 GMT" - ], "Content-Length": [ - "756" + "778" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,70 +334,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId4410\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst4361\",\r\n \"lastName\": \"sdkLast7487\",\r\n \"email\": \"sdkFirst.Last1175@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:04:54.437Z\",\r\n \"note\": \"dummy note\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"sdkFirst.Last1175@contoso.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245/users/sdkUserId8940\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId8940\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst548\",\r\n \"lastName\": \"sdkLast3225\",\r\n \"email\": \"sdkFirst.Last5485@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:57:10.043Z\",\r\n \"note\": \"dummy note\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"sdkFirst.Last5485@contoso.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId4410?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQ0NDEwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/sdkUserId8940?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3Nka1VzZXJJZDg5NDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"dummy note\",\r\n \"email\": \"sdkFirst.Last1175@contoso.com\",\r\n \"firstName\": \"sdkFirst4361\",\r\n \"lastName\": \"sdkLast7487\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"dummy note\",\r\n \"email\": \"sdkFirst.Last5485@contoso.com\",\r\n \"firstName\": \"sdkFirst548\",\r\n \"lastName\": \"sdkLast3225\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e4c0b57-4fbf-4d05-b439-96188987814d" + "3cbfffcc-38c4-4e4a-95b4-b672f90f0a5b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "191" + "190" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:10 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcF4AAAAAAABwYA==\"" + "\"AAAAAAAACZcAAAAAAAAJmQ==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d2fea5b-9fde-4266-a497-3a43171f081a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "91769421-5b78-4165-bda3-46ccf3ce8e08" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "ff9d89ef-4e11-4012-9b75-d533e41900fa" + "e48e93c1-6aa0-4757-8d41-b9652bbb15c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020454Z:ff9d89ef-4e11-4012-9b75-d533e41900fa" + "WESTUS:20200207T005710Z:e48e93c1-6aa0-4757-8d41-b9652bbb15c1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:54 GMT" - ], "Content-Length": [ - "1101" + "1116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -406,64 +406,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId4410\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"sdkUserId4410\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst4361\",\r\n \"lastName\": \"sdkLast7487\",\r\n \"email\": \"sdkFirst.Last1175@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:04:54.437Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"sdkFirst.Last1175@contoso.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/sdkUserId8940\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"sdkUserId8940\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst548\",\r\n \"lastName\": \"sdkLast3225\",\r\n \"email\": \"sdkFirst.Last5485@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:57:10.043Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"sdkFirst.Last5485@contoso.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnMvc2RrVXNlcklkNDQxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245/users/sdkUserId8940?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkMTI0NS91c2Vycy9zZGtVc2VySWQ4OTQwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10218b9d-63fc-4857-964b-f5f7bbc0d3fd" + "eab10e0f-8a97-4cc1-ad3b-1c3508d9b59e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:10 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcGU=\"" + "\"AAAAAAAACZ0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bbfb0949-2702-4df1-89de-e0bceb252018" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f564c49a-29d8-4612-ab41-99700582a683" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "79f27744-4167-4091-94bf-96c36c04466e" + "3e369fc6-f60a-4e46-8203-d0f93528e40a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020455Z:79f27744-4167-4091-94bf-96c36c04466e" + "WESTUS:20200207T005711Z:3e369fc6-f60a-4e46-8203-d0f93528e40a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:54 GMT" - ], "Content-Length": [ - "573" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,59 +472,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId4410\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst4361\",\r\n \"lastName\": \"sdkLast7487\",\r\n \"email\": \"sdkFirst.Last1175@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:04:54.437Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245/users/sdkUserId8940\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId8940\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst548\",\r\n \"lastName\": \"sdkLast3225\",\r\n \"email\": \"sdkFirst.Last5485@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:57:10.043Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnMvc2RrVXNlcklkNDQxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245/users/sdkUserId8940?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkMTI0NS91c2Vycy9zZGtVc2VySWQ4OTQwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b5b9350-8660-4ada-99cd-3b9c8af4b094" + "f52654b6-5cfa-4078-b8b0-548e6fab7727" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fc0c48f-d7fa-4420-bd04-423a0fde39b7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3eb464e6-5e09-4ac1-ab71-415de479884c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "cdcf57e0-8802-444f-8c09-032f2d00f7c4" + "b9031838-e5b1-4ff3-87dd-640ea78e7e8a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020455Z:cdcf57e0-8802-444f-8c09-032f2d00f7c4" + "WESTUS:20200207T005711Z:b9031838-e5b1-4ff3-87dd-640ea78e7e8a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:54 GMT" - ], "Content-Length": [ "0" ], @@ -536,55 +536,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnMvc2RrVXNlcklkNDQxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245/users/sdkUserId8940?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkMTI0NS91c2Vycy9zZGtVc2VySWQ4OTQwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e7784fd-a612-473c-8ff1-821c436238d0" + "299f68d4-6f8e-4524-af68-f36adebb08d4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58cb201a-afaf-457b-a8aa-9d01483f2bcd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f3a640f6-3642-4744-a282-83b6b2694e88" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "05ba59ac-e639-4eb7-b689-391e2bfaefce" + "c99290bd-c1c2-42da-b182-fae8af7670a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020455Z:05ba59ac-e639-4eb7-b689-391e2bfaefce" + "WESTUS:20200207T005712Z:c99290bd-c1c2-42da-b182-fae8af7670a7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:55 GMT" - ], "Content-Length": [ "0" ], @@ -596,186 +596,186 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnMvc2RrVXNlcklkNDQxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245/users/sdkUserId8940?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkMTI0NS91c2Vycy9zZGtVc2VySWQ4OTQwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3eabbd2c-f8e3-450c-a2b0-08ba25b139bb" + "a2a85b62-4c03-4186-9ba6-91099af0e508" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bee33657-f896-4faf-9ccf-44e6f278e386" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "86fa7ca6-6611-420e-9a2a-169b56e8c97a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "38288cf1-6ee8-432f-80c2-b62a19d35af7" + "b8cd3732-f299-4b24-8c1d-49ef5a142137" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020455Z:38288cf1-6ee8-432f-80c2-b62a19d35af7" + "WESTUS:20200207T005712Z:b8cd3732-f299-4b24-8c1d-49ef5a142137" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:55 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId4410?deleteSubscriptions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQ0NDEwP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/sdkUserId8940?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3Nka1VzZXJJZDg5NDA/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4de6ac31-427d-42ec-b5bf-fcb308540aff" + "53eae40f-384d-4720-bd11-fc1c558ffcea" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "597d3be9-6817-4f40-a308-dc91d0d3a1e8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2c966ef7-9f83-4ba1-b679-bc62ef0ef036" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "32d0be74-e9ac-484a-9b74-c1cf4ec5d409" + "d302ef8e-f91d-4b33-9948-dfb0757dc890" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020456Z:32d0be74-e9ac-484a-9b74-c1cf4ec5d409" + "WESTUS:20200207T005713Z:d302ef8e-f91d-4b33-9948-dfb0757dc890" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:55 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/sdkGroupId1245?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9zZGtHcm91cElkMTI0NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0b89aa0-ab71-4528-8c8b-971f7486bd4d" + "3f5657fa-2188-49bf-bdd1-c91f11f68fe9" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ab011a7-b224-4641-ae28-46746b915455" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1c78f0f0-8adc-4d31-8b1b-29a2c2b52887" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "94bf23b5-e3db-4671-a82e-8f87a6840d4a" + "21ad168e-4c15-4956-b2fa-c34969e44acc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020456Z:94bf23b5-e3db-4671-a82e-8f87a6840d4a" + "WESTUS:20200207T005713Z:21ad168e-4c15-4956-b2fa-c34969e44acc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:56 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -784,12 +784,12 @@ ], "Names": { "CreateListUpdateDelete": [ - "sdkUserId4410", - "sdkGroupId2653", - "sdkGroup9018", - "sdkFirst4361", - "sdkLast7487", - "sdkFirst.Last1175" + "sdkUserId8940", + "sdkGroupId1245", + "sdkGroup5722", + "sdkFirst548", + "sdkLast3225", + "sdkFirst.Last5485" ] }, "Variables": { @@ -797,7 +797,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/IdentityProviderTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/IdentityProviderTests/CreateListUpdateDelete.json index ebdd51b4e5f0..c26a0f4b866f 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/IdentityProviderTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/IdentityProviderTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2beffbef-8a19-48cb-95b5-8fb264ad401a" + "71ad008b-e43d-40be-b516-e2e0de789279" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc233ea4-47bc-4f33-add5-c898c24d49aa", - "21cab13a-b1d5-4905-8119-c192aca65565" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b7c8e0c7-e5a0-41e8-83f4-d78166fd49bb", + "bce9c382-ae7c-47fa-a9bc-fdc4e8130723" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "0e1296d8-ca96-4405-8c24-862534f39279" + "e342e7f4-c66b-4c1f-8ac5-f9f0342c01cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020938Z:0e1296d8-ca96-4405-8c24-862534f39279" + "WESTUS:20200207T010654Z:e342e7f4-c66b-4c1f-8ac5-f9f0342c01cc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:38 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1bc97ac-4ec0-4346-843f-a97350eb30e5" + "1d55a32e-bd21-46ef-834b-92283dff0389" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40abada9-8dc1-490a-bba7-65df4c7d301b" + "837fcab5-56f5-4cb6-b7e8-47de22b1d024" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11996" ], "x-ms-correlation-request-id": [ - "3c9685a6-cc16-4c64-a449-d4f666c0890a" + "1f730d80-8dc9-4cf0-9d76-2c3e92d9a313" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020938Z:3c9685a6-cc16-4c64-a449-d4f666c0890a" + "WESTUS:20200207T010654Z:1f730d80-8dc9-4cf0-9d76-2c3e92d9a313" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:38 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzL2ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"clientId7017\",\r\n \"clientSecret\": \"clientSecret7334\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"clientId3187\",\r\n \"clientSecret\": \"clientSecret7857\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4b68142a-e844-4787-9553-de292b190b26" + "68194dd9-571f-4fac-b6b8-e938270636ce" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +168,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:54 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcTU=\"" + "\"AAAAAAAAC1w=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8617fe6-d337-4f4d-a7ea-3a919868d5b1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b177d579-c713-4175-ac64-1f55a46f0728" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "b738cba3-942c-4b1c-ac4e-f6995bee2785" + "ed7bd8df-8d38-4f90-8744-6fb7ede1ef03" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020940Z:b738cba3-942c-4b1c-ac4e-f6995bee2785" + "WESTUS:20200207T010655Z:ed7bd8df-8d38-4f90-8744-6fb7ede1ef03" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:39 GMT" - ], "Content-Length": [ - "398" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,61 +208,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId7017\",\r\n \"clientSecret\": \"clientSecret7334\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId3187\",\r\n \"clientSecret\": \"clientSecret7857\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ef5b05-262f-4f26-87e2-bdc3d9de5474" + "cae50e47-710f-4cd7-8a9c-e7d1d9542c1d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa093a5f-cbec-4b0b-9fc6-6a01d07ea622" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7e5b7615-00f3-4b61-af2c-2d42d569b28d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "db61a351-e56e-4415-bc30-63990f978820" + "1e6f5670-5b22-4338-a100-ec1fd178cfc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020940Z:db61a351-e56e-4415-bc30-63990f978820" + "WESTUS:20200207T010655Z:1e6f5670-5b22-4338-a100-ec1fd178cfc4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:39 GMT" - ], "Content-Length": [ - "463" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,62 +271,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId7017\",\r\n \"clientSecret\": \"clientSecret7334\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId3187\",\r\n \"clientSecret\": \"clientSecret7857\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzL2ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5a32760-1111-4619-8dda-7364b029b062" + "1d2ea3b4-ad3f-4ae5-9536-a2ac634739dd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcTU=\"" + "\"AAAAAAAAC1w=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e5816b2-5fd3-405f-81b3-f69f84545145" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "620fe02d-f2b8-4eeb-952c-e10610e0c8a3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "d5024a2f-36da-4364-a704-8005d68c45ac" + "e00f026e-71ee-485e-9a68-85199c522cb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020940Z:d5024a2f-36da-4364-a704-8005d68c45ac" + "WESTUS:20200207T010655Z:e00f026e-71ee-485e-9a68-85199c522cb9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:39 GMT" - ], "Content-Length": [ "0" ], @@ -338,58 +338,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzL2ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0d56f77-6e1d-4408-9265-be8b8602a19a" + "53bd93fb-d821-4fb0-9ed0-296226b2794c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcTY=\"" + "\"AAAAAAAAC10=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e92e35b4-f17a-4028-9425-fdb5e31c1484" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4e7efda0-22c8-4a96-baca-c1b8d0fadba0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "756edc98-7b73-4ba2-927f-ab81500c6535" + "1bda0147-7036-4de9-836b-d1a4320ced21" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020940Z:756edc98-7b73-4ba2-927f-ab81500c6535" + "WESTUS:20200207T010656Z:1bda0147-7036-4de9-836b-d1a4320ced21" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:40 GMT" - ], "Content-Length": [ "0" ], @@ -401,25 +401,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzL2ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"clientSecret6397\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"clientSecret3299\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b4246e31-3520-4a76-aee8-f66977f6a5d7" + "5554a4b0-2073-4821-aa19-c44d300452a6" ], "If-Match": [ - "\"AAAAAAAAcTU=\"" + "\"AAAAAAAAC1w=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,33 +432,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16bc7169-c5ea-49f7-99bd-9fe711bf1aaa" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6bac1939-f06d-481a-b9dc-f524724f26f2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "6b6ef19b-a3ee-47f5-9125-aab38268874c" + "c4671f55-7fe2-4d75-af3a-7669109d6768" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020940Z:6b6ef19b-a3ee-47f5-9125-aab38268874c" + "WESTUS:20200207T010656Z:c4671f55-7fe2-4d75-af3a-7669109d6768" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:39 GMT" - ], "Expires": [ "-1" ] @@ -467,60 +467,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzL2ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77abadff-d48b-4afc-9f2e-df4ecc14dd33" + "ef5f1959-01c9-493d-94e0-158bab12ca66" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcTY=\"" + "\"AAAAAAAAC10=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "849f89b4-2abc-4f25-ad3e-d787d8b7fa36" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7d2a0b0b-0bbe-4142-b2d8-2643f98287cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "1203b5c9-2f1d-4234-8eda-077ee710fb58" + "e2513e08-892a-485c-8bb7-b3b7b73b3ece" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020940Z:1203b5c9-2f1d-4234-8eda-077ee710fb58" + "WESTUS:20200207T010656Z:e2513e08-892a-485c-8bb7-b3b7b73b3ece" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:39 GMT" - ], "Content-Length": [ - "398" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId7017\",\r\n \"clientSecret\": \"clientSecret6397\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId3187\",\r\n \"clientSecret\": \"clientSecret3299\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzL2ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0ba0b27-53d9-46ea-bd75-75cfa3d2513a" + "cdbfd133-af9f-4a18-9020-d151cd03dcdc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08f83e43-8df5-40c0-b9fb-5cd54d27083f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c4e905c8-a947-4926-b592-438c68c8dbe7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "f2321231-b806-48fe-a133-173255e0d1e8" + "4788272a-34b9-48a7-aea3-c5317b49730a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020941Z:f2321231-b806-48fe-a133-173255e0d1e8" + "WESTUS:20200207T010657Z:4788272a-34b9-48a7-aea3-c5317b49730a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:40 GMT" - ], "Content-Length": [ "92" ], @@ -596,121 +596,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzL2ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b723260-1629-4f87-9f0f-85c9f4c2c873" + "2f028c3b-a12a-4997-badd-9497c32d4e96" ], "If-Match": [ - "\"AAAAAAAAcTY=\"" + "\"AAAAAAAAC10=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5c92455-6449-418f-8dad-21b873552a28" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "68c939b8-4592-4b57-9ba0-f6f8afefdc91" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "d47c8724-b54d-4a64-a7a3-dba32f7447bc" + "0faae17d-15ca-4f5c-b392-9f31bdd3cc04" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020941Z:d47c8724-b54d-4a64-a7a3-dba32f7447bc" + "WESTUS:20200207T010656Z:0faae17d-15ca-4f5c-b392-9f31bdd3cc04" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:40 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2lkZW50aXR5UHJvdmlkZXJzL2ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a4af49f-511a-4458-838c-6b4f3aa6881f" + "9bb90035-bad6-47d5-8b7d-f4f99f4ee6a9" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7dba7601-b0f6-4710-8846-c19e5c0552bc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ad9c70f1-0f9e-4e16-b009-0da9c874275c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "b077ba6f-5e0b-4d3a-8ec4-87e3228aac06" + "12df06fb-4836-4e89-9d0f-76d384687f63" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020941Z:b077ba6f-5e0b-4d3a-8ec4-87e3228aac06" + "WESTUS:20200207T010657Z:12df06fb-4836-4e89-9d0f-76d384687f63" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:40 GMT" - ], "Expires": [ "-1" ] @@ -721,9 +721,9 @@ ], "Names": { "CreateListUpdateDelete": [ - "clientId7017", - "clientSecret7334", - "clientSecret6397" + "clientId3187", + "clientSecret7857", + "clientSecret3299" ] }, "Variables": { @@ -731,7 +731,7 @@ "TestCertificate": "MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/IssueTests/CreateUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/IssueTests/CreateUpdateDelete.json index eb3ee9295219..b93a843c738f 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/IssueTests/CreateUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/IssueTests/CreateUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e6e325e1-fbfc-4e23-b717-30c2b563d943" + "b82c294e-a0fa-4c0f-8fc8-6f5b10a12db7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:06 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aaf04233-4f5a-4a44-8142-5c04436f8702", - "84e47f34-7be3-447f-a9cf-828389f75211" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "913b90b0-e3b6-4ebf-ae6f-576e24e740f9", + "7ed137b5-2cb2-4d80-aecd-245fc0301070" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "d01df760-93b8-4c46-8fc9-0d752ee735fb" + "2c91b64d-d8ea-408f-8aac-de4637409348" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020416Z:d01df760-93b8-4c46-8fc9-0d752ee735fb" + "WESTUS:20200207T010007Z:2c91b64d-d8ea-408f-8aac-de4637409348" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:16 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "890b91a1-c659-4aa7-90c5-b6e6639cc30c" + "5e2daf88-3b71-4100-9228-898492be0a31" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:06 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9f2e366-4332-4a9c-b056-4811e9090e93" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9276271b-3c54-4566-ab5d-d6cbdb9fb992" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "4465a9ee-a0ab-4098-b989-5eb4e103b23f" + "ddafdb73-007f-4b88-a570-700d5b6755a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020416Z:4465a9ee-a0ab-4098-b989-5eb4e103b23f" + "WESTUS:20200207T010007Z:ddafdb73-007f-4b88-a570-700d5b6755a4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:16 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0cc49c-13de-4737-a31e-04fa2150e8aa" + "85b7c6f6-b6f8-4858-b736-abece6e54283" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86126222-afed-47b9-b863-90a0dbb2ae51" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "16c10d55-51f0-4b4c-bed9-84fb0cc1a0bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "582f951c-409e-4479-9c9d-1382432fb6be" + "089dd44b-18a1-44fc-a02b-4e6561f7b188" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020417Z:582f951c-409e-4479-9c9d-1382432fb6be" + "WESTUS:20200207T010007Z:089dd44b-18a1-44fc-a02b-4e6561f7b188" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:16 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e62813d7-a69c-473b-b56c-27cec83dfc56" + "640b0d3e-3a29-4d15-b561-0ce85325c1ed" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2ba0199-69f0-487e-b6a6-241bbe133562" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9c110157-bec5-469f-8727-02a64f2c44fe" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "f8530e57-d38b-40dc-8a32-d46109ce09b2" + "446a28a3-a99f-4e0e-9259-19cf127b9fdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020417Z:f8530e57-d38b-40dc-8a32-d46109ce09b2" + "WESTUS:20200207T010007Z:446a28a3-a99f-4e0e-9259-19cf127b9fdb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:16 GMT" - ], "Content-Length": [ - "667" + "690" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:19:58.283Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4e50ce5-651c-4f13-99be-30d52b850d81" + "1e71121e-c202-4886-aebc-f5af98ba74db" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4405a494-98a9-4dcb-8845-347e8bc42ccd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8f143dbb-5ff6-4e71-9ac2-553f5147ea8d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "d3550ef1-9112-4778-be13-d72df551096b" + "55df7f09-8996-4252-a311-66509aabb292" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020417Z:d3550ef1-9112-4778-be13-d72df551096b" + "WESTUS:20200207T010008Z:55df7f09-8996-4252-a311-66509aabb292" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:17 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,70 +325,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createdDate\": \"2019-04-11T02:04:17.495031Z\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"title\": \"title2214\",\r\n \"description\": \"description9766\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"createdDate\": \"2020-02-07T01:00:08.0312851Z\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"title\": \"title6005\",\r\n \"description\": \"description5560\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0a620899-8da8-46a6-8217-0227ad252ff4" + "4df51820-bde9-440a-9c28-c32606872493" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "493" + "510" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcBw=\"" + "\"AAAAAAAACkA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3fbae2e8-5f1d-4a1b-9e55-388642a67fae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "16312519-ccd4-4620-b436-d4ab8df66c1f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "da7211cb-706c-4d9e-ba51-52d611e36977" + "428de182-981c-41ca-b89e-0f6ed9e37a2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020418Z:da7211cb-706c-4d9e-ba51-52d611e36977" + "WESTUS:20200207T010010Z:428de182-981c-41ca-b89e-0f6ed9e37a2e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:18 GMT" - ], "Content-Length": [ - "669" + "686" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,64 +397,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue2091\",\r\n \"properties\": {\r\n \"title\": \"title2214\",\r\n \"description\": \"description9766\",\r\n \"createdDate\": \"2019-04-11T02:04:17.495031Z\",\r\n \"state\": \"proposed\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"comments\": [],\r\n \"attachments\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue1762\",\r\n \"properties\": {\r\n \"title\": \"title6005\",\r\n \"description\": \"description5560\",\r\n \"createdDate\": \"2020-02-07T01:00:08.0312851Z\",\r\n \"state\": \"proposed\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"comments\": [],\r\n \"attachments\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46b8760f-887f-47ba-856d-2e0c107cb7c7" + "0aa0ccf2-700b-41c5-bd9b-f7f33864cdcc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcBw=\"" + "\"AAAAAAAACkA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07f7d809-195d-427f-b5f2-8316f125275e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "437216e7-37ca-4389-868c-91677e2c8fbd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "e825b2e5-282e-4cc3-9619-89ce28077397" + "688bd61d-4002-4821-bc22-620660943644" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020418Z:e825b2e5-282e-4cc3-9619-89ce28077397" + "WESTUS:20200207T010010Z:688bd61d-4002-4821-bc22-620660943644" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:18 GMT" - ], "Content-Length": [ - "793" + "816" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,64 +463,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue2091\",\r\n \"properties\": {\r\n \"title\": \"title2214\",\r\n \"description\": \"description9766\",\r\n \"createdDate\": \"2019-04-11T02:04:17.497Z\",\r\n \"state\": \"proposed\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue1762\",\r\n \"properties\": {\r\n \"title\": \"title6005\",\r\n \"description\": \"description5560\",\r\n \"createdDate\": \"2020-02-07T01:00:08.03Z\",\r\n \"state\": \"proposed\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21c9be83-11e3-4a3c-9630-0838f38bb99e" + "9d7cefdb-03c8-4dc4-9422-dc9ae8681661" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:10 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcB0=\"" + "\"AAAAAAAACkE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6186c2d1-bfa8-4473-ac8c-9cafdddf1798" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0c33695f-9a4c-4199-a313-fcb2f4786e8a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "42373b9f-b420-43bc-ac04-37e346940f59" + "e6d3d89f-da87-4976-ba81-66d9452afe32" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020418Z:42373b9f-b420-43bc-ac04-37e346940f59" + "WESTUS:20200207T010011Z:e6d3d89f-da87-4976-ba81-66d9452afe32" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:18 GMT" - ], "Content-Length": [ - "807" + "830" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue2091\",\r\n \"properties\": {\r\n \"title\": \"updatedTitle5641\",\r\n \"description\": \"updateddescription6264\",\r\n \"createdDate\": \"2019-04-11T02:04:17.497Z\",\r\n \"state\": \"proposed\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue1762\",\r\n \"properties\": {\r\n \"title\": \"updatedTitle7464\",\r\n \"description\": \"updateddescription3793\",\r\n \"createdDate\": \"2020-02-07T01:00:08.03Z\",\r\n \"state\": \"proposed\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02ec8267-6f36-4ff5-8bc7-24cca95e630a" + "cc2fa33d-6686-4908-8ede-c7f71efeeb5f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c1f1dc0-54bb-4cdc-a8c7-1da32b6462f5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b9ca00ed-8069-4892-9acd-ab5d21b1bc60" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "4b70bb5a-1baa-4160-a722-eb8be412887a" + "48361282-12ee-4a44-a4c0-9cd2e0c47d02" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020421Z:4b70bb5a-1baa-4160-a722-eb8be412887a" + "WESTUS:20200207T010016Z:48361282-12ee-4a44-a4c0-9cd2e0c47d02" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:21 GMT" - ], "Content-Length": [ "81" ], @@ -596,25 +596,25 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"updatedTitle5641\",\r\n \"description\": \"updateddescription6264\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"updatedTitle7464\",\r\n \"description\": \"updateddescription3793\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00dc02fe-4756-4c31-befb-6ab9f4312f4d" + "0ba5a56d-fef3-4a67-a172-31c3c952b10a" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,33 +627,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0917c64-c611-4078-9eb4-c82d637fede8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11cf0a97-71a3-4447-bc1f-b1f9388b1933" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "75786b05-a22c-4f8d-8fe3-386470fcb4e5" + "6913c1bb-58a8-419a-87cd-9c7e415489b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020418Z:75786b05-a22c-4f8d-8fe3-386470fcb4e5" + "WESTUS:20200207T010011Z:6913c1bb-58a8-419a-87cd-9c7e415489b5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:18 GMT" - ], "Expires": [ "-1" ] @@ -662,57 +662,57 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/comments?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9jb21tZW50cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "715a4eb6-5773-4d0d-8e14-3c9a9dd070cc" + "e4e136bf-6a4f-4ab7-bc85-b70dc308afcc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f80279d7-3358-411d-b095-d3964382ca68" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1466dca1-9ed1-45a3-ab88-8b568a008582" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "0516d962-146f-435a-8557-71a4929ebe96" + "bf4522da-8d7e-4631-93b6-fa4ad02268e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020419Z:0516d962-146f-435a-8557-71a4929ebe96" + "WESTUS:20200207T010012Z:bf4522da-8d7e-4631-93b6-fa4ad02268e6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:18 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -721,70 +721,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/comments/newComment1868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9jb21tZW50cy9uZXdDb21tZW50MTg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"text\": \"issuecommenttext6995\",\r\n \"createdDate\": \"2019-04-11T02:04:19.0467367Z\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"text\": \"issuecommenttext1512\",\r\n \"createdDate\": \"2020-02-07T01:00:12.107534Z\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6a3bc514-44ba-4a3c-9f4b-f00fd9a5773b" + "98333455-1802-40a1-9b3c-1dc6d9ada558" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "288" + "295" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:12 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcB0=\"" + "\"AAAAAAAACkE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50f050ae-dc92-44bf-9fd9-42806647c88e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f8456561-c8af-4223-a13f-8c0d3739bbee" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "7044dc38-af3e-4354-9739-c44f3767b4e0" + "1dd54c01-d617-4744-a170-0c69cfb64e1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020419Z:7044dc38-af3e-4354-9739-c44f3767b4e0" + "WESTUS:20200207T010013Z:1dd54c01-d617-4744-a170-0c69cfb64e1c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:19 GMT" - ], "Content-Length": [ - "428" + "435" ], "Content-Type": [ "application/json; charset=utf-8" @@ -793,62 +793,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues/comments\",\r\n \"name\": \"newComment8192\",\r\n \"properties\": {\r\n \"text\": \"issuecommenttext6995\",\r\n \"createdDate\": \"2019-04-11T02:04:19.0467367Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/comments/newComment1868\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues/comments\",\r\n \"name\": \"newComment1868\",\r\n \"properties\": {\r\n \"text\": \"issuecommenttext1512\",\r\n \"createdDate\": \"2020-02-07T01:00:12.107534Z\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/comments/newComment1868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9jb21tZW50cy9uZXdDb21tZW50MTg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05f1d6da-86c4-4545-87de-d60214e28508" + "6acd1cc8-b90a-4448-8581-95fa87dd1c93" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:12 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcB4=\"" + "\"AAAAAAAACkI=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ff52de0-2bcf-43a5-8080-f5719a3daa12" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "015c6250-7119-4184-ab1c-e121d8a169fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "4cf7f0ea-f19d-46fe-a4e9-475a58e965a6" + "f1f818d7-f50e-4d51-aedb-917b60c3f256" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020419Z:4cf7f0ea-f19d-46fe-a4e9-475a58e965a6" + "WESTUS:20200207T010013Z:f1f818d7-f50e-4d51-aedb-917b60c3f256" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:19 GMT" - ], "Content-Length": [ "0" ], @@ -860,121 +860,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/comments/newComment1868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9jb21tZW50cy9uZXdDb21tZW50MTg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa38e784-1206-4c12-aac0-4fea7354e6b6" + "cc275409-2cce-4642-ab6a-57ca15f9dcb4" ], "If-Match": [ - "\"AAAAAAAAcB4=\"" + "\"AAAAAAAACkI=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2b8b009-2a57-410a-8282-c10cb6dc5e44" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3f73b391-bd9d-4a5e-ae41-a8ce022d3cc6" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "cce0c1c1-a8fb-4be4-8f9c-5f544f0a3c80" + "63472f29-71e0-4e7d-a39d-22c8d0bbcc76" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020419Z:cce0c1c1-a8fb-4be4-8f9c-5f544f0a3c80" + "WESTUS:20200207T010013Z:63472f29-71e0-4e7d-a39d-22c8d0bbcc76" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:19 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/comments/newComment1868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9jb21tZW50cy9uZXdDb21tZW50MTg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "826afef5-45b1-4888-9a52-f1c4f1ab4a41" + "b7578455-f572-4780-9c15-be61c44e40c1" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efef25a0-4198-4ef6-a78e-d414ee5b73af" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "60a58fd1-4c8a-4e79-88ac-86b0b0d3f016" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], "x-ms-correlation-request-id": [ - "1f326f88-48cd-4e64-a178-88a3f9361444" + "14f791e3-2116-4eae-94a9-d9b5b3e56aeb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020422Z:1f326f88-48cd-4e64-a178-88a3f9361444" + "WESTUS:20200207T010017Z:14f791e3-2116-4eae-94a9-d9b5b3e56aeb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:21 GMT" - ], "Expires": [ "-1" ] @@ -983,55 +983,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/comments/newComment1868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9jb21tZW50cy9uZXdDb21tZW50MTg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ae0cbf6-8c34-4957-8f76-1bbd3667641b" + "c6df57f0-118b-46a0-be4c-dc7d7ba1ce04" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f051380e-255f-49a0-80a5-7e5d8fdafeb3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4d0b2764-67ed-4085-8ea6-0341e86db72d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "c53aa3e7-4728-4388-99dc-5f4b48dab270" + "8f4c8351-8d2e-4a7c-a1d6-08a8339ea940" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020420Z:c53aa3e7-4728-4388-99dc-5f4b48dab270" + "WESTUS:20200207T010013Z:8f4c8351-8d2e-4a7c-a1d6-08a8339ea940" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:19 GMT" - ], "Content-Length": [ "89" ], @@ -1046,57 +1046,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/attachments?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9hdHRhY2htZW50cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40b1688b-8738-4cd9-ac47-2831f5ca017d" + "d2625e1c-c5e3-454a-9bac-6ad2976de30b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa782111-3207-4821-8fc3-a21219f662c0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "36dfb577-81ff-474e-b885-f858820d86cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "e24255ff-18bf-40b4-9167-2b23cebfa334" + "c24d418b-4b1f-4023-935a-a51a08be144b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020420Z:e24255ff-18bf-40b4-9167-2b23cebfa334" + "WESTUS:20200207T010014Z:c24d418b-4b1f-4023-935a-a51a08be144b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:19 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1105,26 +1105,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/attachments/newattachment5721?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9hdHRhY2htZW50cy9uZXdhdHRhY2htZW50NTcyMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"attachment2024\",\r\n \"contentFormat\": \"image/jpeg\",\r\n \"content\": \"/9j/4AAQSkZJRgABAQEAkACQAAD/4RCcRXhpZgAATU0AKgAAAAgABAE7AAIAAAAOAAAISodpAAQAAAABAAAIWJydAAEAAAAcAAAQeOocAAcAAAgMAAAAPgAAAAAc6gAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFNhbWlyIFNvbGFua2kAAAHqHAAHAAAIDAAACGoAAAAAHOoAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAYQBtAGkAcgAgAFMAbwBsAGEAbgBrAGkAAAD/4QpmaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49J++7vycgaWQ9J1c1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCc/Pg0KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyI+PHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj48cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0idXVpZDpmYWY1YmRkNS1iYTNkLTExZGEtYWQzMS1kMzNkNzUxODJmMWIiIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIvPjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSJ1dWlkOmZhZjViZGQ1LWJhM2QtMTFkYS1hZDMxLWQzM2Q3NTE4MmYxYiIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIj48ZGM6Y3JlYXRvcj48cmRmOlNlcSB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPjxyZGY6bGk+U2FtaXIgU29sYW5raTwvcmRmOmxpPjwvcmRmOlNlcT4NCgkJCTwvZGM6Y3JlYXRvcj48L3JkZjpEZXNjcmlwdGlvbj48L3JkZjpSREY+PC94OnhtcG1ldGE+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDw/eHBhY2tldCBlbmQ9J3cnPz7/2wBDAAcFBQYFBAcGBQYIBwcIChELCgkJChUPEAwRGBUaGRgVGBcbHichGx0lHRcYIi4iJSgpKywrGiAvMy8qMicqKyr/2wBDAQcICAoJChQLCxQqHBgcKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKir/wAARCALdBZMDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD6RooooAKKqzTT/axDAI/ubyXz647Uf6f/ANO//j1AFqiqv+n/APTv/wCPUf6f/wBO/wD49QBaoqr/AKf/ANO//j1H+n/9O/8A49QBaoqr/p//AE7/APj1H+n/APTv/wCPUAWqKq/6f/07/wDj1H+n/wDTv/49QBaoqr/p/wD07/8Aj1H+n/8ATv8A+PUAWqKq/wCn/wDTv/49R/p//Tv/AOPUAWqKq/6f/wBO/wD49R/p/wD07/8Aj1AFqiqv+n/9O/8A49T7SaSZJPNChkcp8vTigCeiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKv/MW/7Yf+zVaqr/zFv+2H/s1WqACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqrZf8vH/AF3arVVbL/l4/wCu7UAWqKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAq/8AMW/7Yf8As1Wqq/8AMW/7Yf8As1WqACsTxHr11o8unwafpy6hcX8zRJG1x5IGELZztPYVt1yPjU3o1jw0dKW3a7+2yeWLlmWM/uXzkqCeme1IO5oaR4iurrV30rWdKbTL7yTPEonE0csYIBIYAcgkZBFb1cd4ekur7xhezeITHDq9jB5MVrCpEQhY58xWJy+SAM4GMYxXOafpupeKtHk1WXQ7a6vbp5DFfvqjxy25DsFCKIzs246A84560+iDqz1SiuE1nSNTlOlXevaadetYLIR3llBIMrPxmZUOBJ3GOozxUOrLpupab4Pj0SaS30+TUdkZVmV0Xy5AyZPIPVfUdqdvzt+Nhefkeg0Vxd1pFj4Z8WaFJoMX2Q38729zBGx2zJ5bNuIz1UgfN155qPQdB07xbY3Wq+IYft11NdTRqJHb/RkRyqogB+XAXORzk0v6/r7x7f16/wCR3FFeYzvc33hXTrOe8mc23iQWcV1uzI0aSMFbd6gcZ9q2J9KsvDfj7QTo0JtV1ETw3SK5ImCx71ZgTywI69eaFrr/AFsn+oPTT+t3/kdtRXngsLTR9eafxfpcs8suoeZa60shdUy+Y0bB3RgcLjG00l3Bd+JPFesx3OiWurwWEqW8MV1ftCsIKBiwQIwJJJ+brwAOlC1X9eX+Y+p6JRWJ4TstT0/Qha6wV8yOVxEBOZisWcopcgFiBxnHatumIKq2X/Lx/wBd2q1VWy/5eP8Aru1IC1RRRQA2QssTtGm9wpKrnG4+me1Yh1rVRfizOjJ5zRmUD7YMbQcddvqa3ayH/wCRyi/68G/9DFb0eXXmjfTz/RnPX5rJxk1qu3V+aZpwPI9ujTxiKQjLIG3bT6Z71JXP6lYx6j4rht5y3kmyYyKrFd43jjI5xnH5U29trO4vfsdvpb37WkSRlXm2xxAjgcnk474J6VSoxdtd9fT72S60ldW209Xa+yR0VFcja3U8ugadZtM8YnvGt3kDksEBb5Q34AZrS1K0ttB0S8utKgWCYRbdyk+uM/UZzmnLD8suRvVuy++wo4nmjzpaJXf9f8MblFcvFpF5FNbTWenRW0qSK0lwLwu0i5+YN8vOa6isqlNQtZ3/AK8mzWlUlUvdW+/9UgooorI2CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKv8AzFv+2H/s1Wqq/wDMW/7Yf+zVaoAKo32kwahfafdzPIslhK0sQQgBiVK88dME9MVeooAzr3RLa91ix1MvLDdWe4K8TAeYjdUfIOV7+x6Gs1/BdoLq4ksdS1PT4bpzJNa2lwEjdj1I4JUnvtIro6KAMjUPD/22eOSDVtT08JEIvLtJwFZR6hlbn3GD71z/AIk0Kwt18K6RDGyWg1EgYkO/PlSNu3Zzu3c565rt6KAMXTvC9vY6oNRuL291K7RDHFLeyhvJU9QoUADOOTjJ9ahuPB9tJe3FxY6jqWm/am33EVlOESVu7YKnax7lcGugooAyH8MacdO0+xgR7e30+4S4hSJurKSfmJyTkkk9z61Pe6Nb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wj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FPSWOTPlur467TnFM+zQf88I/++BT0ijjz5aKmeu0YzQA6iiigAooooAKKrX2pWOlwCfU7y3s4i20SXEqxqT6ZJHPBqKw1zSdUkaPTNUsrx1GWW3uEkIHuATQBeooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAMDxOAb7w8CMj+1V/9Ey1D4ytrdbG0uoY0XU47yFbKRF/ebjIAyg9SCu7I6Yz6UvjC2jvJNBt5jIEk1RQTFK0bf6qXoykEfgarnTLfw34qsrv95PaXubUSXczTvaykZXa7ksFfBUjPXb60R/X9EOX6fqzb1TVvsMsFrbW7Xl9c58qBWC8D7zsx+6oyOeeSAATUFprF2upxWGtWEdnNcKxt5ILjzo5CoyV3FVIbHOCORnB4rN1O0nm8fw7NVudO8/TtkLQJE29lkJdf3iNzhlOBjp7VdHh6VtQsri/1+/vPssxliilS3VS21l/gjUnhjxmhbJifYG1vUbue5/sTSobuC2laF5Z7vyS7r94IAjZw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w30ZdUcOjI7IyMOjKykFTyeQe9QXPh/Try2t4biKQ/ZhiGVbiRZU9cSBg/PfnnvWlRQBnWugabZXEM9tbbZoQ4WQuzMd+3cWJOWJ2ry2TxTptEsZ9UTUHjkW6UKC8czxhwpyodVID4zxuBq/RQBm32gadqN2Lq4ilS4C7DLb3EkDMvZWKMCw9jmpLTRdOsWma0tEi86NY5AudrKucDHT+I/XPNXqKOlgMi08L6TZTxywwSsYTmJZrmWVIj6ojsVU/QCteiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAopGZUQu5CqoySTgAVz/AIa8XW/iSz1G7SA21tZXDRrJI3+sQKGEmMDAIOcc8UAdDRXIjxvcpbQapdaHLBoVw6ql6Z1LqrEBZGixwpJHOScHpXTahf2+madPfXb7IIELu3sPT3oeiuw3dixRWR4W14+JfDlvqrWrWhmZwYWfcU2uV5OB6elU/Fvi5PCjae0tk9zFdSssro+DCijcz4wd2Bk446UPR6hudHRWVr2upo3he61qKMXccEIlVFk2iQHGMNg+vpUeseI4dJgtFFtNd318dtrZwYLyHGTycAKO7HgUAbNFcq3i3UtNaOTxP4efTbKRghu4btbhYiTgeYAAVHvyKk8T+I9Y0CG5vLbQYr3T7eLzHuDfiNvf5Nh/nRsG501FY+iajrN+znV9Fi06LYGjdL0T7ye2AoxUfiTX7vRpdOg07TV1C5v5mhSNrjyQMIWznaewoegLU3KKx7HVtQWyu7rxJpsOkQ267963gnBUAlicKMYxWZH4q12+hF5pXhOaewcbo5J7xIZZV/vLGQevUZIzQB1dFc1d+NLWLwVdeIbO3kmFr8slrKfKkRwwVkbg7SM+9dBPP5FlJcbd3lxl9ucZwM4oeiuxpXJaK5HVPHR07wbpOvLpb3H9otGDbRy/MgdCxwdvzEBemBn2rcudagj8MTa3Z4uoEtGuowGwJAFLAZ7ZxQ9L36CWrSXU0qK5rUfFdzbaHot7Y6Wt3cas8aR27XPlhC6F/v7TnGMdBUR8Xahps0X/AAlGgSaZayusYvIbpbiJGJwN+ACozgZxjmnZ3t8hX0udVRRRSGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHE+NvEFompW+gX0k9tZTJ5t7PHbySb488QrsBwWwcnsue5rBtNbsL/RfHVppTyeZMJpoE+zyIPLECL3UAdMYPPtXqlULDRrbT59QliMkh1Cfz5lkIIB2hcDjphR1zSto13T/T+v8Ahx31T7M53xM8LfB64MRBifTYxF75ChQPxIrP1XxLp8niSDTdcluILLSxHJIgtJZPtVwBkcopGxOvPVsdhW5beBtOtpYV+138tjbyiWDT5Z90ETA5GBjcQDyASQPSulqm7y5v6/r/AIBKVoqJxnww1Wzv/C32a1kdpbeeZpA0TqAHmcrgkAHj06d8Va8TRpL4v8KxyKHR57lWVhkEGBuK2tG0iDQ9MWxtHkeJXdwZSC2XcuegHdjRe6RBfanp19M8iy6e7vEFI2sWQod3Hoe2KWhXV/M898RSP4e8J694Wu2Jt/srT6VIx+9DuG6LPqhP/fJHpXRKyxfE3Tjc8LNozJak9C4kBcD327fwFa3ifwtp/izSxZan5qKr70lgYK6HocEg8EEgjFT6toFhrVhFa3yP+4IaGaNykkTAYDKw5BoW9/62f+f9XE9dP66f5FTxtJBF4F1k3RXY1nIoz3YqQo+uSKzvFEcsPwjvI7nPnJpgWTPXcFGf1q3beCrSO8huNR1LVNXNu4eGO/ud6RuOjbVABI9TmtbWNLh1rR7rTbppEhuozG7RkBgD6ZBH6Uuj8/6/UafvJ9v+B/kWLX/jzh/65r/KuU8bi+Os+GRpTW63f22TyzcqzRj9y+chSD0z3rro0EcaovRQAM1Tv9Ig1C/0+7meRZNPlaWIIQAxKFfm46YJ6Yqnq7kx0jby/Q5XxYmu/wDCvtU/t57GYq0TsLCN1BhEil87ic8A/hXawyRywRyQMrROoZGXoQRxildFljaORQ6MCGVhkEHsa5geA7SHMVjrGtWNlniyt70rEo7gZBZR7AikM5jXE+0eGviBNa827XSbSOhZEj8wj8Rz9K9C1CaMeHrmYuPL+yu2/PGNhOaW20bT7PRhpVvaRpYiMx+RjIKnqDnrnJyT1rBX4fWAjFs+qaxLpy8DTpLwmHb2TpuK+xak1ePL5fpYadmn5sxghTwV4BV1wfttnkH/AK5NRq2fCtnrmhv8ul6lZXM+mt2ik8tjJD9OrL+IrtNR0W11IWAlLxrYXKXMKxYA3KCADx056DFM8Q6BZeJdHk07UQ4ichleIgPGw6MpwcH/ABpzfMnbq3+Ngjo15Jfg2ctN/wAgHwF/19W3/ohq2vH0sEfgPVluAG823aKNO7yNwgHvuIqTUPCVrf6NpunC9vbVdNZGt57eRVkBRCoJJUjofSm2Pg6zt76K8v73UNXuIG3QNqFx5ghPqqgBQffGacrSb83/AJExvGz7L/M2bBJItOto5+ZViVX/AN4AZqeiihu7uCVlYKKKKQwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigClqmr2ejwxS37yKJpBFGIoXlZ3IJwFQE9Ae3aq1p4n0q8vks0mmhuZATHFdWstu0mOu3zFXd+GareJyBfeHiTgf2qv/omWovF8sF1ZW2nQMsmozXUL20akF0KyKzSewVQcn8O9C1++35f5g9Pu/wAzpKKytU1O5ivrfTdLijlvp1aQtMSI4YxgF2xyeSAFGM+owTUEGoapYatbWWtm0nS8LLBc2sbRASBS2xkZm6qCQQexGKNwNyiuej1DWtWmu30eSwtre1ne3C3ULyPKyHDHKuuwZ4HDcc+1S6vrV3p2qaXZQW0c8t8soCZIG9Qp+92UAsScE8cc8EDrY3KK5281HW9EC3mqNYXWn71Wf7NC8UlurEDfyzBwM8/d459qt6jql3/aaaXo8UMl2Y/OllnJ8u3jzgEgcsSQcKCOh5GOQDXorBOo6tpN3bLrhs7m1uZVhFzaxtEYnbhQyMzZBPGQ3UjjvTb3WdS/4Sp9F02CBmNolwJpg22LLurFsH5vurhRjOTzR6AdBRWJZahqdvriaXrX2WUzwtNb3NrG0attIDIyMzYI3Ag7jnnpioYdQ1vV2uZ9HfT7e2gnkgRLqF5HlZGKsSVZQgyDjhuOfagDoaKydS1O6ivLbTdNhikv7hDIxlJ8uCMYBdscnkgADGfUYJqGDUNUsNWtrLWzaTpeFlgubWNogJApbYyMzdVBIIPYjFAG5VWxv4tQjmeFXUQzvA28AZZDgke1Wqw/DhZbHUii7mGo3JC5xk+YeM0uvy/VD6fP/M3KZJNHEUEsiIZG2IGYDc3oPU8Gufvr7xHpmny6pdjTXt7dDLNZxJJvVBy22UtgkDn7gz0461U8WjU59R0CTT7uzSB79PKEtszkP5Uh3EiQZXHbAOe/an1Qun3nXUVjXeo39lHZ2Ci3vNWui20qrRRKq/ekIJYgAFRjJJJHTPEa6hq2mahaw621ncW15J5KT2sTRGKTBKhlZmyDgjII5wMc5oA3aK506xq154g1HSdNitozaGMm6nRmVFZAQNoI3sTngFcAc9s2tK1G+OqXOlawsBuYYlnjntlKpNGxI+6SSpBHIyeo5oWobGxRWCmoatrEkr6J9jtbOKRo1ubuJpTOynDFUVlwoIIyW5weMYJkGpahZ6vp1nqgtil5HInmwBgPOX5lHJ4DIGOOxU8mgDaorN1HUZoNU06ws1jaW6kZpN4J2QoMs3B65KqPdq0qACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA5vxfa297LoNveQR3EEmqKHilQMrDypeoPBqGfT7PwlrVrf6XaxWen3jra3sUEYRFYn91JgcD5vlPruGeldNLBDO0bTRJIYn3xl1B2NgjI9DgkZ96J7eG6geC6hjmicYaORQysPcHrQtPv/yB6/d/mctrdjaf8JrbXGqXF1bW91aC2ilhvJLdRKrlgjFGHLBjjP8AdNXYtE0S31i0Vry7mvY2M0ENxqk82CAQW2M5HQkZx3rcuLaC7t3guoY5oXGGjkQMrD0IPBqCw0rT9LRk0ywtbNWOWW3hWMH64AoWgPUw9Xt7O2hvtb0fVVsLqEMZ2SUNBK6jG2WPpnjbkYbtntUOp6sttrfhm+1GL7OssExmLdLcsqcsewBwCfet9tD0l9QF++l2TXgORcG3QyZ9d2M1Vv7eSXxTpUnks8KwXCyNtyozswCenODSDqVvF1zFc6DJpVvIst3qg+zwRo2SQ3DP/uquST7UnmxaT42ne9cRRalbQx28rnCmSMvmPPqQ4IHf5vStax0fTNMZ203TrSzaT75t4FjLfXA5qxcW0F3bvBdwxzwuMNHKgZW+oPBpgYXiiaK9S00a2kV7y5uoZNiHLRxxyK7SH0AC4z6kCpoAP+E+vjjn+zbfn/trNWhYaVp+lxsmmWFtZoxyy28Kxgn3wBVgQRC4acRIJmUI0m0bioJIGfQEnj3NC0/ryDo1/W9zE1T/AJHTQP8Arndf+grVTWIbSytb/XdE1RbK4i3PMEkDwTyLwVkTpuJG3K4b3PSuleCGSaOZ4kaWIERuVBZM9cHtmqp0PSTqH286XZG8zn7SbdPMz67sZpDOb1G2t5/FNhe6zJd2MV9YLChivJLcJMGLeWxRlySGOM/3TWlFomiW+sWiteXc17GxmghuNUnmwQCC2xnI6EjOO9blxbw3du8F1DHPC4w8cihlYe4PBqCw0rT9LRk0ywtbNWOWW3hWMH64AqhFuuRF7caf4Q167sjtmivbkh9u7YPNOWx3wMnHtXXUyOCKFWEMSRh2LsFUDcx5JPuanr8v8h9Pn/mcP4s07w/a+Db2eQnUrma0kNs9xctcPI2wneoYkDH3sqAAB2rU1jCWvhiV2CpHfQ7mY4AzE6j9WA/GtiDQtItvP+zaVZQ/aVKz+Xbovmg9Q2ByD71ZntLa5tGtbm3ilt2Xa0MiBkI9CDxins7+n4C/4P4nM+I7W0bxPpd7qNxcQWTQy2pngu5IBHIWQqGZGHB2sOTjIA64q0dC0KHULNJ768luDKJbeGfVZ5NzJ82QjSEHGM9K2o7CzisfsUVpAloFK/Z1jAjx6bemKjsNH0zSt39madaWe/732eBY931wBmhaA9SjpAH/AAkmvnHPnQ8/9sVqNv8Akoi/9gpv/RorbSGKOSSSONFeUgyMqgFyBgZPfjik8iH7T9o8pPO2bPN2jdtznGeuM84pW1X9dGgeqa/rdMwfB11FBoiaTPIEvtNJgnic4bgnD47qwwQferHiCL+0vD73GmOk1xasLm2aNgQ0kZztyPXBU/U1ev8AR9M1QodT060vCn3DcQLJt+mQcVS1i9lsLMafo1lM13NHstvKgPkw9tzPjaoXrjOT2Bod7abjW+uxX8OXEeuX134giJa3lVbazJ/55ryzfi5I/wCACuhqrplhFpel21jb/wCrt41jBPU4HU+561aqnbZEq+7CiiikMKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo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AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigCOWCGdo2miSQxPvjLqDsbBGR6HBIz70T28N1A8F1DHNE4w0cihlYe4PWpKKAI7i2gu7d4LqGOaFxho5EDKw9CDwagsNK0/S0ZNMsLWzVjllt4VjB+uAKt0UAUW0PSX1AX76XZNeA5FwbdDJn13YzVW/t5JfFOlSeSzwrBcLI23KjOzAJ6c4NbFFAFOx0fTNMZ203TrSzaT75t4FjLfXA5qxcW0F3bvBdwxzwuMNHKgZW+oPBqSigCpYaVp+lxsmmWFtZoxyy28Kxgn3wBVgQRC4acRIJmUI0m0bioJIGfQEnj3NPooAjeCGSaOZ4kaWIERuVBZM9cHtmqp0PSTqH286XZG8zn7SbdPMz67sZq9RQBHcW8N3bvBdQxzwuMPHIoZWHuDwagsNK0/S0ZNMsLWzVjllt4VjB+uAKt0UAFU7/R9N1XZ/aenWl5s+59ogWTb9Mg4q5RQAyKGKCFYYY0jiQbVRFAVR6ACqdtoWkWV2bqz0qyt7hs5mit0Vznr8wGav0UAMeGKWSN5Ikd4iWjZlBKEjGQe3BI/GkmghuYwlxEkqBgwWRQwyDkHB7ggGpKKAK97YWepW5g1G0gu4SQTHPGHXPrg8UTWFnc2X2O4tIJbXaF8h4wyYHQbTxirFFAFax02x0yExabZW9nGTkpbxLGCfoBU0UMUAYQxpGGYuwRQMseST7n1p9FAEaQQxzSTJEiyy48xwoDPjpk98VCmmWEeoPfx2Vul5Iu17hYlEjD0LYyRxVqigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii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W3a2fep8wLEFbgHIwfXFdLRR0sHW5yngvTNV0D4bW1jNaouqW8UpWB5AVLlmZQWUkYOR09a3NCm1S40K0l1+2htdRaMG4hhbciN6A5P8z9TV+im3dtgFFFFIAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqjaf8hjUP8Atn/6DV6qNp/yGNQ/7Z/+g0AXqKKKACiiigCj/wAzD/26/wDs9Xqo/wDMw/8Abr/7PV6gDF8Ua/J4f02KW0sv7QvLiYQ29r5vl+Y2Cx+bBxhVY9O1XtI1OHWdFs9Stv8AU3cKzKM9Awzj8K4fxNq2tyfEi2Tw94eOuro1oXmj+2R24jlm4U5fqQingf36w7a+1WD4U+KNGmsptOv9MnO+0jlErw2sriTCsvBwjOMj+7SWzf8AXb/gja1S/rv/AMA9StNb0rULyW1sNTs7m5h/1sMNwrvH9VByPxovdb0rTbmK31HU7O0nm/1UU9wqM/0BOT+Fc14XHw8W8sx4T/sY3ohPlfYyhn2Y534+bp13d/eub0ZvBL3mvt47Ol/23/aM4nGq7PMEQb915e/nbs2421XWwlqrnp19qNlpdqbnU7y3s4AQDLcSrGoP1JAqS3uoLu2S4tZ454HG5JY3DKw9QRwa8r+JDXH/AAm2kKT4d/s/+z2NuPEm/wCymTd82Mcb9u3G7tnFT+GdMiTwH4ni1bWtBh0y9cgyeH5y9vZ7kCtgH7vY46cnpU/Zb/rewdUj0Ww1rS9Ullj0zUrO8khOJUt51kKfUAnH40k+t6Va6hHYXOp2cN5Ljy7aS4RZHz6KTk1554LvNIsPGFnplrbeGb24mt5BHqfh/ajBVCkiaNc7d3HO4jI7Vla6/hzRNU1fUjN4Z8QJJdvN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iigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/6DV6qNp/yGNQ/7Z/8AoNAF6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gCGK0toJ5poLeKOW4YNNIiANIQMAsR1IHHNCWdrHdy3SW0K3EyhZZhGA7gdAW6kDJxn1oS9tZLySzjuYXuYlDyQLIC6KehK9QDiiG9tbm4ngt7mGWa3YLNGkgZoiRkBgOhxzzQBXstD0nTbmS407S7K0nl/wBZLBbojP8AUgZNF5oek6hdx3V/pdldXEX+rmmt0d0+jEZFXqyo/FXh6a++xQ69pkl1vKeQt5GZNw4I25zn2oAuX2nWWqWxt9Ts7e8gJyYriJZFz9CCKjstF0vTbSS107TbO0t5STJDBAqI5IwcqBg8cVdooAo6domlaRv/ALJ0yzsfM5f7NbrHu+u0DNNbQNHfUxqT6TYtfA5F0bZDKD/v4z+taFFABRRRQBn2mg6PYXr3ljpVjbXMmd88NsiO31YDJp1xoek3eoR391plnNeRY8u4kt0aRMejEZFXqKAIWs7Z7xLt7eJrmNCiTFAXVTjIDdQDgce1ENnbW8081vbxRS3DBpnRArSkDALEdTgAc1NRQBnnQNHOqjUzpNib8HIu/syeaDjGd+M9PercNrb28kz28EUTzv5krIgUyNgDcxHU4AGT6VDd6nZ2N3Z211NsmvpDFbrtJ3sFLEZAwOFJ5xVugCve2FnqVq1tqNpBdwN96KeMOp+oPFMTStPj0w6dHYWyWLKUNqsKiIqeo2Yxg+mKh1LxDoujzJFq+r2FhI67kS6uUiLD1AYjIpdN1/RtZkdNI1axv3jGXW1uUlKj1IUnFG4EFr4R8N2N1Hc2Ph/S7a4jOUlhso0dD6ggZFa9ZGk+JLPWdX1bTrWK5SbSpVinaWLarFhkbT3H5fkQa16OgdSFbS2S8e7W3iW5kQRvMEG9lBJClupAyePeo7nStPvZXkvLC2uJHhMDtLCrFoyclCSOVJ7dKtUUAZFr4R8N2N1Hc2Ph/S7a4jOUlhso0dD6ggZFF34S8OX93JdX3h/S7m4kOXmmso3dz7kjJrXooApyaRpsulrpsun2r2KqFW1aBTEAOg2Yxj8KdBplhbaebC2sbaGzKlDbRwqsZU9RtAxg1Jd3ltYWr3N/cQ20EYy8szhFX6k8Cksr601K1W5066hu7d/uywSB0b6EcUbhsRf2Rpvl2kf9nWmyyIa1XyFxbkDAKDHy/hirlFFADJoIrmB4biJJYnG145FDKw9CD1qpZaJpWmW8tvpumWdpDN/rI4LdI1f6gDBq9RQBHBBDa28cFtEkMMShI441CqigYAAHAA9KqaloOj6wyNq+lWN+yDCG6tkl2/TcDir9FG4FOTR9Mm0tdNm060ksFAVbVoFMQA6AJjHH0qS30+ys332lpBA/lrFuiiVTsXO1eB0GTgdsmrFFAGX/AMIxoH9oi/8A7D037aH8wXP2SPzA397djOfer0VnbQXE88FvFHNcEGaREAaUgYBYjk4HHNTUUeQEFtZWtlZraWdtDb2yghYYowqAHk4UcdzVax8P6NpjzPpukWNo042ytb2yRmQejYHP41oUUAYsXgvwvBMksPhvSI5I2DI6WEQKkcgg7eDV270XSr+8iu77TLO5uYf9VNNbq7x/RiMj8Ku0UAULjQdIu9PWxu9Ksp7RH8xbeW3Ro1bn5gpGM8nn3NN07w7omjzNNpOj2FjK67We1tUiZh1wSoHFaNFAGfbaBo9lfPe2ek2NvdyZ33EVsiyNnrlgMmrVzZWt4Yjd20M5hkEsXmxhvLcdGGehHqKmooAKKKKAM+90DR9RvI7vUNJsbu5jxsmntkd0xyMMRkVbFrbreNdiCIXLII2mCDeVByFLdcZJOPepaKAIrm1t722e2vII7iCQbXilQMrD0IPBqC00jTbAxGx0+1tjDGYozDAqbEJBKjA4BIBx7VcooAy7rwxoF9e/bL3Q9NubokHz5rSN3yOnzEZrUoooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/6DV6qNp/yGNQ/7Z/8AoNAF6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gDz74oXL+G1sfFOkMg1iBjapAVLfbInBJQgcnaRvHpg+tbPhWC10HwGl9aPLqzzQtfTz2yb5byVhuYqOMk9APYCrjeG/tHjNdev7oXC29v5Nla+Vhbct/rHzk7mbgZwMDjmjw14cPhoX1tbXfmadNOZrW1MePsu7lkDZ5XdyBgYyetEdmv69PnuN7p/wBf0tiDw54w/wCEivZbf/hHdf0ry49/m6nY+SjcgYB3HJ56V5VYxafqmg6xpMPgG81XVri9vEi1QWKLEGMrbT9oJyNv9MV7xWP4Z0H/AIRzSpLP7T9p8y6muN/l7MeZIX24yemcZ70rJv5fqhXaXz/RnNalceKNNvfC/h7Sb63NzcWEqXVxcpvUNGsYMuOrEZbAyAS3PSkm1Txf4V0HUk1ia31e6+0QW+l3zRLCszTEL88aH5QjH8RXU3mifa/FGm6x9o2fYYZovJ2Z3+Zt5znjG30Oc07xDoVt4k0OfTL1pI0lwyyxNteJ1IZXU9iCAabd9X8/v/yBJKy7HKx3Hi3wtr2kr4h1231uw1W6+yMq2S27W0jKWUqVPzLlcHPNNt7jxh4uvLy/0PXbXRdNtbuS2t7drFbhrny22s0jEjaCwONvar+leCtSTWLXUPFHie411rBmazhNqlukTEbdzBfvsATgnpk1FP4F1W21S6m8NeLLrRrG9mae4shaxzDe33jGzcpnrxnmjr/Xl/we4f1+f/AM34h+OX0LV7LRf7eg8PNNbG5m1BrFro/e2qiIARyQxJPYVJ4T8b6jrvg/XpdNmh13UNLytrcR27QreZTcpMZwQc5BA64461v+IfCt1qd3b6jomtz6NqlvEYBdLCsyyRkg7XRuG5GQe2TT9P0PXY/D93Y6x4plvryZiYb+Gzjt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nmpvbUryO3orm4ZfEus+CbCW3kt9I1e5iRrhpoDIIcj5tqEj5umA3TvVLwlf6/b+KNU8O+IdRh1c2cENxHfR24gbDlhsdV4B+XIx2/Sra2Jvpc7GiivPtX13XNZ1fVodH12y8M6Po0iwXGp3MKStJMQCVAchVUbgMnnJqetij0GivNtT8T61p2laFNba/Y6sPPmlvLqyiQpdW8Q3OOMhWC5ztPUVeudb1vUPiE2m6bqQs9Nms7iC3cW6SYuEWNjLzyQPNA25xlTT62X9af0vUS1/r+vU7uivL7ew8fTeL7zQ/wDhYOPstpFc+d/YsHzb2ddu3tjZ1z3r09AQihm3MBycYyaOlw62FooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/wC2f/oNXqo2n/IY1D/tn/6DQBeooooAKKKKAKP/ADMP/br/AOz1eqj/AMzD/wBuv/s9XqAPO9T1i78NfFDUr3/hHdb1SC80+3ijk06zMqBlZyQzEgD7wqBtP8WW/hjxL4gtrR7TXdXnjeO0hZZJYIE2pgdjJs3HHrjvxXpdFK2lv63uPrf+trHj/hLTdRk+IWj6iLfxi9lHFcK8viSQN5bFB91B9wH1PXgDpXRanqd94S+IGp6k/h7V9WsdTtbdY5NLtxO0bx7wQy5GPvA5rvqKb1t5ErS/n/X6HmHxA0e+uPENh4hhTxOtm1h9nlj8PyiO6ibdvG5D94HOCB0Kitn4aWFvb2Go3UEfiZJbq4Xzj4kUCdyqABhjquMDJ9Pau2ooWl1/W9xvXV/10MnQdYu9XW+N7pFxphtrt4IxOf8AXovSReBwfy9zWtRRQB574h0m8v8A4oQ2v9nTTaXqFlALu58s+Uohlkk2M2MZJ2jHoTWBH4Z13V/DPiOwks7yC7thZ2tu7fuWultnJDRuf7y4w3Tca9hopWsrf1uN6u55F4S06G58Zac93F8RjPaM8kb66Q9ojbCDlsdwSAR1qVpte0rwzrvhC38L6hd3c73jRX6oPszxSlm3lxyXw2NgBJIAr1iih6qwJ2dzmp9Vm8L/AAzj1JrGS5lsNOjd7Ut5bHag3AkjjHOeM8dK19F1Nda0Kx1NImhW8t0nEb9VDKDg/nUGt+GdH8R/Zv7csI71bWTzIklJ2hsY5XOG+hyK1FVUUKgCqowABgAVbd22+pCXKkl0FrzHxl4nuX8W6OLfwn4luY9G1B5ZpoNNLpMvlsmY2B+blh1xxXp1FR1TK6WPOvGMt3qn/CP6rdeH9W1HQNjy3mkxwjz/ADCB5fmQ5+YDnK5wD1qz8ObC5ttQ1m5tdJvdE0G6aN7LTr4bXjfB8xhHk+WpOOK7yimtAeoE4BPp6CvKbXwV4s8RaZq14/iVtGg16aWSfTZtJSRwh+RVZnIYHYq8cYr1aila47tHkE+vX2mX/gS+1jRdUur63tby3mtLa1LzsyqqbwhxkHG7Poa2UtNU1rTfGWvTaRc2H9p6Z9ls7KZP9IcJHJ8zIM4JL4C9eK7S70O2vPEGnaxK8ouNPSVIlUjYwkADbhjPbjBFaVOXvLXz/FsI+61bpb8DI0XToG8K6RbX1nGTb28DCKaIfupFUYOCOGB/EGteiinJ3bZEVypI5H4g+ItX0PTraHQdK1C9nvHKPcWVobg2qDGW2dC3PygkDg56YOLZQQ+J/AOseGtJ0LXdHka3LC41m18o3EzHdvL5O5iwyT716RRU2umn1Lvqmuh43pGiNqMFpodl4O1TS7xrqGfWdW1Nd3mCNw7BJiSZNzKMYwOc4rY+IPiG5k1jTbG08L+Irv8AsrVYLuW4ttPLxSoqkkIwPJ+YDnAyDzXplFVd3X3/AJf5E2tf7vz/AMzzzxhcX2vaPoWpDQdXn0Xz3k1PSPK2XUigEIGj3fMu4ZK55yKX4f2UyeJtUv8AS9Dv/D+gXEKbLC+QRE3GTudIgTsG3A7Z49K9CooWjuhvVWCvH5tDXwz421S61LwhqviR7i6e50mWBfOt4TJyyspO2M7/AOIg8YI6c+wUVPW4+ljze5uNf8B/DjT7Ow0u61DVrqV2uHsrY3AtWkYu7bR97G7ABIBI61q+ANUtpYZdPtfD/iHTmUGee71mz8o3UhPzMWydzH07AccDFdnRTW7YnsZOnaxd3uv6pp9xpFxaW9kYxDeSH5LrcuTt47dO/wCHSuK8a+Ir+bxI+iXXhvxFc6DCqtcPplg0v25iAfL35AEYzzjJbkcDOfS6KXYfc848T26eJdG8P69/wil9c2mm3LmfRbq2CTmIqUyIicHBCkL3FT+CNOWXxbe63pnhqfw1pclmtv8AZriBbd55Q5O8xKcLgcZ75r0CiqWjv/XYl6q39b3Mmz1e7ufE+oaZLpFxBa2scbxX7n93cFhyq8dR9T744zzni/U9Ln1b+zNT8Bap4gkjTEVymmpLCNwyQsrEbe2TxjFdzRU2uUefG78Q+BvhXYQwaVdanqwPlLBbo1ybZWZmXdjlgi4XqASAMjrU/gDVoZJpbEaB4ktbuYG4u9S1iw8kXMnA5bccH0UcADA6V3VFVfVt9SeiQV5tei58Kazrtvqfha88RaDrNyLxPsVstyVkKqGSSInplQQen9PSaKnrco8u8J6HdpdaDHdaNcWdmz6pKYJIdqwJK48tWC8KSpI2/wCFbieG/wCwvEvhK30xLqazs0vUmncFzl1DbpGAxywPXqa7Wintt/X9XEczZ2lwvxR1W7aCUW0ml20aTFDsZhJKSoboSARx7iumooo6WDrcKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqjaf8hjUP+2f/AKDV6qNp/wAhjUP+2f8A6DQBeooooAKKKKAKP/Mw/wDbr/7PV6qP/Mw/9uv/ALPV6gDMstdtb7XtR0hEljutPEbSeYAA6uMqy4JyOCOccinWmt217ruoaVAkpl09YzNIQPLy4JCg5znAyeO4rnPEUkfh/wCIeja7Iwjtb6GTTbtz0BAMkRP4q4/Gjwlotvrvgm7m1u3Mq+I5pLy4iLFSY3P7tcggjCKlCu1f+r9PvWoPR/1t1/HQ3dAuNduBf/8ACRWVvaFLt0tPIk3eZAPus3JwT+H0Fa9cR8NNLs9FTxJp2mQ+TaW+tSJFHuLbR5UXGSST+Ned+MGg1GHWPEuj+F76byJZRH4gn1zyWhkRsfu4d3KgjAXGT9aTaVvRP8EOz19T3uisDXrDT9c8Dy2viC8a0s7iBDPcCYRbOhzuPA59eK27eNIbWKKJiyIgVWZtxIA4JPf61TVm0SndJklcxb/EDQ73xVDoNg891cStInnxRHyEeMZZS5wCQP7uevOK6euM1+KOH4meDUhRY1xfnaowMmNST+dJbj6HZ1V1PVLLRtNm1DVLlLa1gG6SVzwvOP58YqS7vLawtXub64itreMZeWZwiL9SeBTmWG6gG4RzRPhhkBlbuD/I0egepj+GfFth4rjvH02K6jWzmELG5h8suSoYMAecEEdQD7VuVx/gz/kZ/GX/AGFV/wDREddhR0T8l+QdX6sKK5LxFF/ZPjbQ/ECfLHOTpd4f9mQ5iJ+kgA/4HXO3t5e2/gXxZ4wsNwvNSl22siuFKWyMIkYE8Dje+f8AazSvpf8Ar+tbjtrb+v60Z6fRXj3hXw/runeJ9LvtK8GXGi28kudQuz4gS8W6iKnJZM8nJDAj8qyfEem2/ibWPEkV74d1rX9Ua7lt9M1C0ZvstsAAFQksFXa2d2QQTmm+39dP8xLX+v67Hu9FeeLpUHh/xl4D02JEhSCyvIwocld+xCwBYknnJqlJdQXl78UpLSZJoxZIhaNsjctqwIz7EEUS0Ta8/wAHYcE5NJ6bfieoUV55ofw7tZLPQdfh1G8XW41gnlvpZWcyx7QWh2bgqoQcDA4969DqpKzsRF3SaCiiipKCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiig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0754Fa/i3w54q166ns4v+Eau9Hm+5/aVrI09tlcHZtOCc5IPBpsS31F8ZanBpniLwhqOrulnDDNcyTlmyI/9GfIz354461u+HL/WNVhmv9TtI7G0mYGytmQ+esf96U5wCeu0DgdST0zbvwY90vhi2uZo7600lJIrs3Wd1wrQGLpg5JJycnp3NX/DOk6noQuNOuLmO60qIj+z5HdjPGn/ADyfIwQvZs5xwRT05n/X9f8ADhrZf13/AK/pm9RRRSAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/ACGNQ/7Z/wDoNXqo2n/IY1D/ALZ/+g0AXqKKKACiiigCj/zMP/br/wCz1eqj/wAzD/26/wDs9XqACiuU8R+JdWi12Hw94Tsba71WSA3Mst47LBbR5wC23kknIAHpWhpN/q9potxceNhptnJbEs89pM3kMmAd3z4K9xg+lHS4dbG3RXPaB498MeKLyS00LV4rq4jBJi2MjEDqQGA3D3Gaqz/E7wba3MVvca7BHLJI0QVkf5WVip3cfKMg8tgHr0oA6uiuJ8afE3RvCOoWlhPdxi7kmiaeN4ZG8u3Ync4KjBIx0yT7VtaJ4z8P+ItLudS0jUUms7QkTzOjxLHgbjneBxjnNG6uHWxuUVz+geO/DXii8ltdC1aG6uIgS0W1kYgdSAwG4e4yKqT/ABO8G2tzFb3GuwRyySNEFZH+VlYqd3HyjIPLYB69KAOrorifGnxN0bwjqFpYT3cYu5JomnjeGRvLt2J3OCowSMdMk+1b3hzxXovi2zluvD979rhhk8t28p0w2M4wwB6Ghaq6B6GxRRWJoetXGp61r9nOkSx6bdpBCUBBZTEj5bJ5OWPTHFHWwG3RWVr/AIm0fwtYrea/fx2cLNtUsCxY+gVQSfwFRQ+L9BufDUviC31KOXS4QTJOis2zHUFQNwPI4xmgDaqtY6ZY6ZG8em2VvZo7F2W3iWMMx6kgDk+9ZGmePPDGs64+j6XrEFzfICTEm7DY67WxtbHsTVfXfiT4S8N6k1hrOsxwXSgFokiklKZ9dinB9jQG51FFcD4l+Lnh7R9Jsrixv45pb3ypYVkt5cNAZdjv90YwA5weeOlS6l8Q9M1fwHr+p+DdT864062L+Z9nZfLYgleJFAPQ9jSeib7AtWl3O5ormtG8e+HNW1OPRrbWILjVBGC8Sg/MwXLANjaSOeAex9K1bvXdNsdYstKu7tIr2/Dm2hIOZNoy3OMD8etU1Z2EndXNCiiobySeGxnks4BcXCRlooS+wSNjhd3bJ70hk1FcRY+I/Fmn+KtO0zxdYaULfVjIttLpsshaFkXftkD9cgdRxUvirWPGekSXmoaZZ6H/AGNZR+Y4vLiRZ5wFydpA2r3AznpQ9NRpXdkdlRWBqV94hvNBsrjwtZWS3d0iyONUd1SBSucEINxOTjtUfg/XtT1iPUbbXLa1ivtNufs8sllIXglO0NlSeRjdgg9KdndrsTdWT7nR0UUUhhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s/8A0Gr1UbT/AJDGof8AbP8A9BoAvUUUUAFFFFAFH/mYf+3X/wBnq9VH/mYf+3X/ANnq9QB5/rurJ4K+I0uu6xDMNG1Kwjt3vIomkFvLGzEBwoJAIbr6ik8Ua1aeMfAjX+hW9zqWn2t/byzx/Z3X7VCjqzhFYAsMe3Y16DRQtF6f53H1v/W1jzb/AISDSPHHjDw63hNJbg6XcPLdXn2V4lt4vLZfKJYDliRwPSs6ysrWP4K+MJ0t4xLPLqLSvtGXKyOFJPtgY9K9aopNXTXdP8bf5Anqn2/S/wDmcJ4uma18EeH9SaKWaGwu7O6ufKQuyxr95sDk4zmq/inXLLx/8M9UbwZdyXvkyxCXy7Vi2FdXYCNwN/y87eh6V6HRTlq35u/5f5Ex0t5K39feeN+FdRtte8daP5/xD/te7sTI0VifD/2RseWQy7wAAAO3I4q1ZWVrH8FfGE6W8Ylnl1FpX2jLlZHCkn2wMeletUUpK6t5Nffb/Ia0af8AXX/M4TxdM1r4I8P6k0Us0Nhd2d1c+UhdljX7zYHJxnNbukeItF8c6Le/8I/qc0kOGt3uIEeGSJivVSygggHIOOtb1FU3dvzd/wAv8hJWtboc34d8G/8ACPag93/wkfiDVN8Rj8nU77zo1yQdwXaPm4xn0JrlbXx74a8JeNvFlr4g1L7JNNfxyIvkSPlfs8YzlVI6ivTqKWt7j0PKPH19N/buh+KLDXpdI0mTT2EWprpf2xYy5VhlGGU3LjnGeMVmRm1u/hb431K08UDxE14FM8y6cbMI6qB93oSRt5A7V7VRSsuVx9fxd/62Hf3lI4TXbO2sdW8BQ2cEcEcV6yRrGoAVfs78D24rzzWPEv2LWPFOgy6vpelWGp6hMt0NQsbia5jDAKWQouwggZUMeARzXv1cJ/wgOu2dzdR6F41uNP026nknktG0+KZg0hy+JG5HJ9OKNeZvvf8AT/IS0ivK34X/AMx/jExS/C+2udHZ9RtbV7O4V4f3jSRRyoxYY6napP51U8SeMtC8XfC/xO/h6++1i2smEuYXj2Eg4+8oz0PSuz0LRbXw9oVppOnhvs9rHsQucs3ckn1JJNaFOa5uZdwh7tn2OA1uytrBvAENlBHBHFqKKixqBtBgfI/Hv610WqavpNp4t0bT72yaXUbsTGzuBbhxDtUF/n6rken41u0U27u/nclKyt5WCqer6pbaJo13qd8WFvaRNLJsXJwBngetXKKl3toWtzynwr8QvDHiLxRbajq2rKdWmJt9O05LeYraK5xgvsw0jcZbOB0HGSZPHV78PNW8QTW+pveTeJrKPybdbCO586Nh8yhNo2E5bOTnrXqVFN62Em0cDrep6HafDvSrH4sTbXvYYxcIVlJeVArHJiGQQcegp/w0hSA6qmirer4Y3xnTFvFcEHafM2b/AJvLztxnvuru6Kd9W+4raJdgooopDCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/8AoNXqo2n/ACGNQ/7Z/wDoNAF6iiigAooooAo/8zD/ANuv/s9Xqo/8zD/26/8As9XqAMvXvEuj+GLIXevahFZQscKXyWc+iqMk/gKXQfEek+J9O+3aDepeW4YoWUFSrehBAIPI6iubSK3vPjbcf2gFkls9IiexR+dm6RhI6j14UZrR8cX9zpGgA6Q8dpeaheQWguigPlGRwnmEdyB0z7ULZPv/AJ2Drbt/lc6aivPV03UfBXijQxF4k1XV7XVblrW5ttTmExB8tmDxnA2gFeR6GucW18QXfgjW/E0ni3VoZNLuLx7K2hlAjxHI3EuQTIOMAE4AwKV1/Xy/zDy/rr/keuXuo2mnLAb2YRC4mWCLIJ3SMcKvHrVmvMPHugnWk8PatJresWbXl5Zwm3tbvZDGWyfMRccPzw1aeuQ3fw8+H+oz6dqusatdSSxrFLfy/apYi7KnyDAzjOQvc09k797fl/mC1at1V/zO8oryTwjqesW/jCwgtYPHE9lds63x8RWn7qP5SVdHH3PmGMdMGqq2viC78Ea34mk8W6tDJpdxePZW0MoEeI5G4lyCZBxgAnAGBQ7LcNz1y91G005YDezCIXEywRZBO6RjhV49as15h490E60nh7VpNb1iza8vLOE29rd7IYy2T5iLjh+eGrsdI0Ofwtot6tnf6rr1wQ0sSaneh3ZgvEauQAoJHfpnNGyd+jt+Qt2rdV/mb1cPL8ZPAcMzxS67tdGKsPsc/BHX+CtTw7rfifUtQeHX/CP9i2yxFluP7TiuNzZGF2qMjgk59qr69/yU3wl/1yvv/QEos7oZ0WmanaazpdvqOmy+da3KB4pNpXcvrggEfjVquW1u4utI8caJfG5m/s6+DadPCXPlpKfnifb0BJBXPuK57WtQ1KXwL4w8RwX91CsxaPTgkzKIoojs3rg8FmDnI6jFJtWb9f6/UaWqXp/X5npVFecNY6z4Y1rw/qU/ifUdTl1W9S0vLS4YfZyHRjuijA+TaVHc1zOp+I9X1fWNUukHjlJbS7mgsl0SzVrJRGxUbwf9YSRk59cU9v67W/zEtf673/yZ7bRWBbpqfiLwBEtxNPo2p3tkokkRCslvKV5IU4IIPbg/StfT7aWz022tri5ku5YYlR7iQYaUgYLH3PWm1ZtCTukyxVZdRtG1V9NWYG8SETtFg5CEkA56dQfyqzXk48BCf4m31n/wlnieM/2bHcedHqWJTulcbN237gxwOxJpfaS/rYr7Lf8AW56xRXmnj3U73SH0Pw3azeI57eS2d7i40hBNfyiMKo+Y4xktlmxnOPWpvA8mq61p+t6NqH/CTWtiqoLK91eM294u4HcA6/e2kAg9ecHijdNoW1rnotVjqNoNVGmmYfbDCZxFg58sNt3Z6dTivPvCmt6n4p8RQ6XqGoGJdBDNNJbSMn9quHaNZBjGYxtO4cgucdBVO78Ci4+Kj23/AAlXiWEzaa915kWo7XTMwHlqdvEYz936UdV53/INk/K35nq1Ys3imyhtdbufKuHh0UH7Q6KuHYJvZU55IBAOccmi9uU8I+DZJpJ7m++w2+1HuZN8079FDN3ZmIH41iahpL6L8HNVtblg922nXE11J/fmdWZz/wB9E/hipk7JtdP6/r5FQV2k+p11jdpf6fb3kIZY7iJZUDjkBgCM+/NMbUrRdWTTGmAvJIWnWLByYwQpbPTqwFeZ2llrPh2DwhrMniPULuTUbm2tJ7FmAtFikjOAkeOCoA+bOTijUfA/2n4sJb/8JR4kh+06dPdeZFqG14v3yfu0O3iP5vu+w9K0kvfsu7X3K5nF3jd9k/vdj1amTy+RbyS7Hk8tC2yMZZsDOAO5rzjxPp2qQ6xomgad4j1W3txpd29xcm4JnmCGMg7sY35IG7GQC2OtQfD681p9c0S41XW7q/8A7Y0R7mWCVv3UbI8YQovY7W+Y9zk1K97Rf1v/AJFXtv8A1t/mdd4X8Z2/ii6vrWPStV0y4sRG0sWp24hYh920gbif4T1xXR1yei/8lS8Uf9elj/KWusoDZ2/rYKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/+g1eqjaf8hjUP+2f/AKDQBeooooAKKKKAKP8AzMP/AG6/+z1eqj/zMP8A26/+z1eoA5/xL4M03xRJbz3Ul3Z31rkQX1hOYZoweoDen1Bplv4H0tPDV1ot/NfapBdtunmv7lpZnYYwd3YjAxjGMV0dFHSweZy+heAdP0TVE1GXUNV1a7iUpby6peGc26nghBgAZHGetWY/B+nx+FdQ8PrNc/ZL8zmVyy+YvmsWbB244LHGQfxrfooeu4bGPq/hjT9b8Opo16ZvIjCeXLHJskjZMbXDDowxVSw8FWdt4fvdH1LUdU1u1vDmQ6pdec6jA4VgBt6Z46Hmujoo3v5gtLW6HK6J4FXQ9Wjvo/EviO8SMELaXuoebBgjH3dvbtzVuPwfp8fhXUPD6zXP2S/M5lcsvmL5rFmwduOCxxkH8a36KHruGxj6v4Y0/W/DqaNembyIwnlyxybJI2TG1ww6MMUeHPD3/COWctv/AGvquq+ZJv8AM1O58504xhTgYHHStiijq33C2iQVnXei297runarK8on09ZViVSNreYAG3DGf4RjBFaNFAHE+PpbzW4m8KadouoSz3YjkGp7Nlta4fO/zM53rtztAyeKseNdGaL4T6jo+kW0sxjshBBDChd2AwAAByTxXXUUmrxce407ST7HI+Hfh/Y6Re2+pXWo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Qr5b7jlsrjBySSfWm32i6VqaQrqWmWd4sBzELi3WQR/7uRx+FSlay9PyaG3dt+v4tM4T4V6pZ2HgvU7rUbzTLS0j1WYCW3kMdomduBGXxhSTwD61d+HGuaTdPrlra6nZzXE2s3c8cMdwjO8ZYYcAHJX36V1s2iaVcWc1pcaZZy207+ZLC9urJI3HzMpGCeByfQVDYeGNB0q6+06XomnWU4BXzba0jjbB6jKgGqvr8rfl/kTbS3nf8/8AMy4P+J58Qpp/vWmgxeRH6G5lALn/AIDHtH/AzT/G0slzp9toNqxW41qb7MSvVIcbpm/74BH1YVraPo9volk9vbPJJ5k0k8ksxBeR3YsxJAA746dAKG0e3fxCmsSPI9xHbG3jQkbI1LbmIGM5OFBOeiil2T/rr+enoPu1/X9b+pgfEmKOD4Va1DCojjjs9iqvAUAgAVQ8H2WgWmtK+m/EHUNeuGhZRZXOtR3K44JYIOcjHXtzXcXVpb31rJbXsEVxbyjbJFMgdXHoQeDVCx8L6Bpd0LrTND02zuFBAlt7SONwD1GQAaOrbB7JL+tjy6If2P8ADqy8QL8sMlteadff7kkknlOf92TA+khr07wl/wAiXov/AF4Qf+ixVw6Vp501tONhbGyYENbeSvlkE5IK4xyeasQwx28KQwRrFFGoVERQFUDgAAdBQtE1/XX/ADB6tP1/T/IJpY4IXlndY4o1LO7nCqB1JJ6CuI8KQyXHie41HwwjWXhiYMXjmX5LuY/8tYE4Ma+rdG7L/FXcSRpNE0cqLJG4KsjDIYHqCKVVCqFUAADAAHShaO4PVWFooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/wCg1eqjaf8AIY1D/tn/AOg0AXqKKKACiiigCj/zMP8A26/+z1eqj/zMP/br/wCz1eoAKCQASTgDqa5vxP4kuNOvrHRdJijOqaluFvLdfJBE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z5F8vAwOQwJ4PcmotH+HfhbQbW/t9J0v7PFqMPkXS/aJW8xMEY+ZjjqeRg0S97m8yoPlcW+hwkfhi08P6N4N8R2s93JrN1eWUM93Lcu3mRSjDR7c7QoBwAB2FetXV/aWTQreXUFuZ3EcQlkC+Y56Kuep9hVSbw/plxp9jYzW2630+SKW2TzGHltH9w5zk498570av4e0rXZbOTVrNLl7GYT25YkeW478HnoODxVN3b9fw0/4JCVkvT8dSl4yu9bs/D7y+HYPNn3ASui75Yov4njjOA7gdFJH49Cvg600SHQUuPD032uK6JkmvHbdLcSd2kY87s8YOMdMDpW9VGLSbWza+m0yGK0ub075ZVTIaTGA5XIyfyzU7XK3sYukf8TvxtqWrn5rbTVOm2noXyGnYfjtT/gBrll8JaT4p8f+L/8AhIpJ5LK1lt2FsLloogxgXMjbSMkAcZOBzXoGgaPHoOhWumxSGbyU+eVhgyuTlnPuWJP41xx+Gml654717VvFOjrcxyywGxkadgGURANlVb+8P4hRbW3l+q/4cL9TY+G1zNdeA7NpriS6VJJooZ5DlpYllZUYnv8AKBzXVVHBBFa28cFtEkUMShEjRcKqjgAAdBUlNu7Egqjaf8hjUP8Atn/6DV6qNp/yGNQ/7Z/+g0hl6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gAorH8QSa5bJBeaCkN2sBJuLBxta4X/Yf+Fh2B4OcHHWp9D12x8Q6aLzTZCyhjHJG67XhkH3kdTyrD0o3A0aKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/+g1eqjaf8hjUP+2f/AKDQBeooooAKKKKAKP8AzMP/AG6/+z1eqj/zMP8A26/+z1eoAx9f0vUNYSCztNRNhZOT9seEETuvZEbomect19Mdav6dp1npOnxWOm28dtbQrtSOMYA/+v796s0UAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s//AEGr1UbT/kMah/2z/wDQaAL1FFFABRRRQBR/5mH/ALdf/Z6vVUudPS4uBN500ThNmYn28Zz6Uz+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9VG0/5DGof9s//AEGj+y/+n69/7/f/AFqltLFLR5HWSWRpMbmkbJ4oAs0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAf/9k=\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"attachment9474\",\r\n \"contentFormat\": \"image/jpeg\",\r\n \"content\": \"/9j/4AAQSkZJRgABAQEAkACQAAD/4RCcRXhpZgAATU0AKgAAAAgABAE7AAIAAAAOAAAISodpAAQAAAABAAAIWJydAAEAAAAcAAAQeOocAAcAAAgMAAAAPgAAAAAc6gAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFNhbWlyIFNvbGFua2kAAAHqHAAHAAAIDAAACGoAAAAAHOoAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAYQBtAGkAcgAgAFMAbwBsAGEAbgBrAGkAAAD/4QpmaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49J++7vycgaWQ9J1c1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCc/Pg0KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyI+PHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj48cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0idXVpZDpmYWY1YmRkNS1iYTNkLTExZGEtYWQzMS1kMzNkNzUxODJmMWIiIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIvPjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSJ1dWlkOmZhZjViZGQ1LWJhM2QtMTFkYS1hZDMxLWQzM2Q3NTE4MmYxYiIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIj48ZGM6Y3JlYXRvcj48cmRmOlNlcSB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPjxyZGY6bGk+U2FtaXIgU29sYW5raTwvcmRmOmxpPjwvcmRmOlNlcT4NCgkJCTwvZGM6Y3JlYXRvcj48L3JkZjpEZXNjcmlwdGlvbj48L3JkZjpSREY+PC94OnhtcG1ldGE+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDw/eHBhY2tldCBlbmQ9J3cnPz7/2wBDAAcFBQYFBAcGBQYIBwcIChELCgkJChUPEAwRGBUaGRgVGBcbHichGx0lHRcYIi4iJSgpKywrGiAvMy8qMicqKyr/2wBDAQcICAoJChQLCxQqHBgcKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKir/wAARCALdBZMDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD6RooooAKKqzTT/axDAI/ubyXz647Uf6f/ANO//j1AFqiqv+n/APTv/wCPUf6f/wBO/wD49QBaoqr/AKf/ANO//j1H+n/9O/8A49QBaoqr/p//AE7/APj1H+n/APTv/wCPUAWqKq/6f/07/wDj1H+n/wDTv/49QBaoqr/p/wD07/8Aj1H+n/8ATv8A+PUAWqKq/wCn/wDTv/49R/p//Tv/AOPUAWqKq/6f/wBO/wD49R/p/wD07/8Aj1AFqiqv+n/9O/8A49T7SaSZJPNChkcp8vTigCeiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKv/MW/7Yf+zVaqr/zFv+2H/s1WqACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqrZf8vH/AF3arVVbL/l4/wCu7UAWqKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAq/8AMW/7Yf8As1Wqq/8AMW/7Yf8As1WqACsTxHr11o8unwafpy6hcX8zRJG1x5IGELZztPYVt1yPjU3o1jw0dKW3a7+2yeWLlmWM/uXzkqCeme1IO5oaR4iurrV30rWdKbTL7yTPEonE0csYIBIYAcgkZBFb1cd4ekur7xhezeITHDq9jB5MVrCpEQhY58xWJy+SAM4GMYxXOafpupeKtHk1WXQ7a6vbp5DFfvqjxy25DsFCKIzs246A84560+iDqz1SiuE1nSNTlOlXevaadetYLIR3llBIMrPxmZUOBJ3GOozxUOrLpupab4Pj0SaS30+TUdkZVmV0Xy5AyZPIPVfUdqdvzt+Nhefkeg0Vxd1pFj4Z8WaFJoMX2Q38729zBGx2zJ5bNuIz1UgfN155qPQdB07xbY3Wq+IYft11NdTRqJHb/RkRyqogB+XAXORzk0v6/r7x7f16/wCR3FFeYzvc33hXTrOe8mc23iQWcV1uzI0aSMFbd6gcZ9q2J9KsvDfj7QTo0JtV1ETw3SK5ImCx71ZgTywI69eaFrr/AFsn+oPTT+t3/kdtRXngsLTR9eafxfpcs8suoeZa60shdUy+Y0bB3RgcLjG00l3Bd+JPFesx3OiWurwWEqW8MV1ftCsIKBiwQIwJJJ+brwAOlC1X9eX+Y+p6JRWJ4TstT0/Qha6wV8yOVxEBOZisWcopcgFiBxnHatumIKq2X/Lx/wBd2q1VWy/5eP8Aru1IC1RRRQA2QssTtGm9wpKrnG4+me1Yh1rVRfizOjJ5zRmUD7YMbQcddvqa3ayH/wCRyi/68G/9DFb0eXXmjfTz/RnPX5rJxk1qu3V+aZpwPI9ujTxiKQjLIG3bT6Z71JXP6lYx6j4rht5y3kmyYyKrFd43jjI5xnH5U29trO4vfsdvpb37WkSRlXm2xxAjgcnk474J6VSoxdtd9fT72S60ldW209Xa+yR0VFcja3U8ugadZtM8YnvGt3kDksEBb5Q34AZrS1K0ttB0S8utKgWCYRbdyk+uM/UZzmnLD8suRvVuy++wo4nmjzpaJXf9f8MblFcvFpF5FNbTWenRW0qSK0lwLwu0i5+YN8vOa6isqlNQtZ3/AK8mzWlUlUvdW+/9UgooorI2CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKv8AzFv+2H/s1Wqq/wDMW/7Yf+zVaoAKo32kwahfafdzPIslhK0sQQgBiVK88dME9MVeooAzr3RLa91ix1MvLDdWe4K8TAeYjdUfIOV7+x6Gs1/BdoLq4ksdS1PT4bpzJNa2lwEjdj1I4JUnvtIro6KAMjUPD/22eOSDVtT08JEIvLtJwFZR6hlbn3GD71z/AIk0Kwt18K6RDGyWg1EgYkO/PlSNu3Zzu3c565rt6KAMXTvC9vY6oNRuL291K7RDHFLeyhvJU9QoUADOOTjJ9ahuPB9tJe3FxY6jqWm/am33EVlOESVu7YKnax7lcGugooAyH8MacdO0+xgR7e30+4S4hSJurKSfmJyTkkk9z61Pe6Nb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wj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FPSWOTPlur467TnFM+zQf88I/++BT0ijjz5aKmeu0YzQA6iiigAooooAKKrX2pWOlwCfU7y3s4i20SXEqxqT6ZJHPBqKw1zSdUkaPTNUsrx1GWW3uEkIHuATQBeooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAMDxOAb7w8CMj+1V/9Ey1D4ytrdbG0uoY0XU47yFbKRF/ebjIAyg9SCu7I6Yz6UvjC2jvJNBt5jIEk1RQTFK0bf6qXoykEfgarnTLfw34qsrv95PaXubUSXczTvaykZXa7ksFfBUjPXb60R/X9EOX6fqzb1TVvsMsFrbW7Xl9c58qBWC8D7zsx+6oyOeeSAATUFprF2upxWGtWEdnNcKxt5ILjzo5CoyV3FVIbHOCORnB4rN1O0nm8fw7NVudO8/TtkLQJE29lkJdf3iNzhlOBjp7VdHh6VtQsri/1+/vPssxliilS3VS21l/gjUnhjxmhbJifYG1vUbue5/sTSobuC2laF5Z7vyS7r94IAjZw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w30ZdUcOjI7IyMOjKykFTyeQe9QXPh/Try2t4biKQ/ZhiGVbiRZU9cSBg/PfnnvWlRQBnWugabZXEM9tbbZoQ4WQuzMd+3cWJOWJ2ry2TxTptEsZ9UTUHjkW6UKC8czxhwpyodVID4zxuBq/RQBm32gadqN2Lq4ilS4C7DLb3EkDMvZWKMCw9jmpLTRdOsWma0tEi86NY5AudrKucDHT+I/XPNXqKOlgMi08L6TZTxywwSsYTmJZrmWVIj6ojsVU/QCteiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAopGZUQu5CqoySTgAVz/AIa8XW/iSz1G7SA21tZXDRrJI3+sQKGEmMDAIOcc8UAdDRXIjxvcpbQapdaHLBoVw6ql6Z1LqrEBZGixwpJHOScHpXTahf2+madPfXb7IIELu3sPT3oeiuw3dixRWR4W14+JfDlvqrWrWhmZwYWfcU2uV5OB6elU/Fvi5PCjae0tk9zFdSssro+DCijcz4wd2Bk446UPR6hudHRWVr2upo3he61qKMXccEIlVFk2iQHGMNg+vpUeseI4dJgtFFtNd318dtrZwYLyHGTycAKO7HgUAbNFcq3i3UtNaOTxP4efTbKRghu4btbhYiTgeYAAVHvyKk8T+I9Y0CG5vLbQYr3T7eLzHuDfiNvf5Nh/nRsG501FY+iajrN+znV9Fi06LYGjdL0T7ye2AoxUfiTX7vRpdOg07TV1C5v5mhSNrjyQMIWznaewoegLU3KKx7HVtQWyu7rxJpsOkQ267963gnBUAlicKMYxWZH4q12+hF5pXhOaewcbo5J7xIZZV/vLGQevUZIzQB1dFc1d+NLWLwVdeIbO3kmFr8slrKfKkRwwVkbg7SM+9dBPP5FlJcbd3lxl9ucZwM4oeiuxpXJaK5HVPHR07wbpOvLpb3H9otGDbRy/MgdCxwdvzEBemBn2rcudagj8MTa3Z4uoEtGuowGwJAFLAZ7ZxQ9L36CWrSXU0qK5rUfFdzbaHot7Y6Wt3cas8aR27XPlhC6F/v7TnGMdBUR8Xahps0X/AAlGgSaZayusYvIbpbiJGJwN+ACozgZxjmnZ3t8hX0udVRRRSGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHE+NvEFompW+gX0k9tZTJ5t7PHbySb488QrsBwWwcnsue5rBtNbsL/RfHVppTyeZMJpoE+zyIPLECL3UAdMYPPtXqlULDRrbT59QliMkh1Cfz5lkIIB2hcDjphR1zSto13T/T+v8Ahx31T7M53xM8LfB64MRBifTYxF75ChQPxIrP1XxLp8niSDTdcluILLSxHJIgtJZPtVwBkcopGxOvPVsdhW5beBtOtpYV+138tjbyiWDT5Z90ETA5GBjcQDyASQPSulqm7y5v6/r/AIBKVoqJxnww1Wzv/C32a1kdpbeeZpA0TqAHmcrgkAHj06d8Va8TRpL4v8KxyKHR57lWVhkEGBuK2tG0iDQ9MWxtHkeJXdwZSC2XcuegHdjRe6RBfanp19M8iy6e7vEFI2sWQod3Hoe2KWhXV/M898RSP4e8J694Wu2Jt/srT6VIx+9DuG6LPqhP/fJHpXRKyxfE3Tjc8LNozJak9C4kBcD327fwFa3ifwtp/izSxZan5qKr70lgYK6HocEg8EEgjFT6toFhrVhFa3yP+4IaGaNykkTAYDKw5BoW9/62f+f9XE9dP66f5FTxtJBF4F1k3RXY1nIoz3YqQo+uSKzvFEcsPwjvI7nPnJpgWTPXcFGf1q3beCrSO8huNR1LVNXNu4eGO/ud6RuOjbVABI9TmtbWNLh1rR7rTbppEhuozG7RkBgD6ZBH6Uuj8/6/UafvJ9v+B/kWLX/jzh/65r/KuU8bi+Os+GRpTW63f22TyzcqzRj9y+chSD0z3rro0EcaovRQAM1Tv9Ig1C/0+7meRZNPlaWIIQAxKFfm46YJ6Yqnq7kx0jby/Q5XxYmu/wDCvtU/t57GYq0TsLCN1BhEil87ic8A/hXawyRywRyQMrROoZGXoQRxildFljaORQ6MCGVhkEHsa5geA7SHMVjrGtWNlniyt70rEo7gZBZR7AikM5jXE+0eGviBNa827XSbSOhZEj8wj8Rz9K9C1CaMeHrmYuPL+yu2/PGNhOaW20bT7PRhpVvaRpYiMx+RjIKnqDnrnJyT1rBX4fWAjFs+qaxLpy8DTpLwmHb2TpuK+xak1ePL5fpYadmn5sxghTwV4BV1wfttnkH/AK5NRq2fCtnrmhv8ul6lZXM+mt2ik8tjJD9OrL+IrtNR0W11IWAlLxrYXKXMKxYA3KCADx056DFM8Q6BZeJdHk07UQ4ichleIgPGw6MpwcH/ABpzfMnbq3+Ngjo15Jfg2ctN/wAgHwF/19W3/ohq2vH0sEfgPVluAG823aKNO7yNwgHvuIqTUPCVrf6NpunC9vbVdNZGt57eRVkBRCoJJUjofSm2Pg6zt76K8v73UNXuIG3QNqFx5ghPqqgBQffGacrSb83/AJExvGz7L/M2bBJItOto5+ZViVX/AN4AZqeiihu7uCVlYKKKKQwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigClqmr2ejwxS37yKJpBFGIoXlZ3IJwFQE9Ae3aq1p4n0q8vks0mmhuZATHFdWstu0mOu3zFXd+GareJyBfeHiTgf2qv/omWovF8sF1ZW2nQMsmozXUL20akF0KyKzSewVQcn8O9C1++35f5g9Pu/wAzpKKytU1O5ivrfTdLijlvp1aQtMSI4YxgF2xyeSAFGM+owTUEGoapYatbWWtm0nS8LLBc2sbRASBS2xkZm6qCQQexGKNwNyiuej1DWtWmu30eSwtre1ne3C3ULyPKyHDHKuuwZ4HDcc+1S6vrV3p2qaXZQW0c8t8soCZIG9Qp+92UAsScE8cc8EDrY3KK5281HW9EC3mqNYXWn71Wf7NC8UlurEDfyzBwM8/d459qt6jql3/aaaXo8UMl2Y/OllnJ8u3jzgEgcsSQcKCOh5GOQDXorBOo6tpN3bLrhs7m1uZVhFzaxtEYnbhQyMzZBPGQ3UjjvTb3WdS/4Sp9F02CBmNolwJpg22LLurFsH5vurhRjOTzR6AdBRWJZahqdvriaXrX2WUzwtNb3NrG0attIDIyMzYI3Ag7jnnpioYdQ1vV2uZ9HfT7e2gnkgRLqF5HlZGKsSVZQgyDjhuOfagDoaKydS1O6ivLbTdNhikv7hDIxlJ8uCMYBdscnkgADGfUYJqGDUNUsNWtrLWzaTpeFlgubWNogJApbYyMzdVBIIPYjFAG5VWxv4tQjmeFXUQzvA28AZZDgke1Wqw/DhZbHUii7mGo3JC5xk+YeM0uvy/VD6fP/M3KZJNHEUEsiIZG2IGYDc3oPU8Gufvr7xHpmny6pdjTXt7dDLNZxJJvVBy22UtgkDn7gz0461U8WjU59R0CTT7uzSB79PKEtszkP5Uh3EiQZXHbAOe/an1Qun3nXUVjXeo39lHZ2Ci3vNWui20qrRRKq/ekIJYgAFRjJJJHTPEa6hq2mahaw621ncW15J5KT2sTRGKTBKhlZmyDgjII5wMc5oA3aK506xq154g1HSdNitozaGMm6nRmVFZAQNoI3sTngFcAc9s2tK1G+OqXOlawsBuYYlnjntlKpNGxI+6SSpBHIyeo5oWobGxRWCmoatrEkr6J9jtbOKRo1ubuJpTOynDFUVlwoIIyW5weMYJkGpahZ6vp1nqgtil5HInmwBgPOX5lHJ4DIGOOxU8mgDaorN1HUZoNU06ws1jaW6kZpN4J2QoMs3B65KqPdq0qACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA5vxfa297LoNveQR3EEmqKHilQMrDypeoPBqGfT7PwlrVrf6XaxWen3jra3sUEYRFYn91JgcD5vlPruGeldNLBDO0bTRJIYn3xl1B2NgjI9DgkZ96J7eG6geC6hjmicYaORQysPcHrQtPv/yB6/d/mctrdjaf8JrbXGqXF1bW91aC2ilhvJLdRKrlgjFGHLBjjP8AdNXYtE0S31i0Vry7mvY2M0ENxqk82CAQW2M5HQkZx3rcuLaC7t3guoY5oXGGjkQMrD0IPBqCw0rT9LRk0ywtbNWOWW3hWMH64AoWgPUw9Xt7O2hvtb0fVVsLqEMZ2SUNBK6jG2WPpnjbkYbtntUOp6sttrfhm+1GL7OssExmLdLcsqcsewBwCfet9tD0l9QF++l2TXgORcG3QyZ9d2M1Vv7eSXxTpUnks8KwXCyNtyozswCenODSDqVvF1zFc6DJpVvIst3qg+zwRo2SQ3DP/uquST7UnmxaT42ne9cRRalbQx28rnCmSMvmPPqQ4IHf5vStax0fTNMZ203TrSzaT75t4FjLfXA5qxcW0F3bvBdwxzwuMNHKgZW+oPBpgYXiiaK9S00a2kV7y5uoZNiHLRxxyK7SH0AC4z6kCpoAP+E+vjjn+zbfn/trNWhYaVp+lxsmmWFtZoxyy28Kxgn3wBVgQRC4acRIJmUI0m0bioJIGfQEnj3NC0/ryDo1/W9zE1T/AJHTQP8Arndf+grVTWIbSytb/XdE1RbK4i3PMEkDwTyLwVkTpuJG3K4b3PSuleCGSaOZ4kaWIERuVBZM9cHtmqp0PSTqH286XZG8zn7SbdPMz67sZpDOb1G2t5/FNhe6zJd2MV9YLChivJLcJMGLeWxRlySGOM/3TWlFomiW+sWiteXc17GxmghuNUnmwQCC2xnI6EjOO9blxbw3du8F1DHPC4w8cihlYe4PBqCw0rT9LRk0ywtbNWOWW3hWMH64AqhFuuRF7caf4Q167sjtmivbkh9u7YPNOWx3wMnHtXXUyOCKFWEMSRh2LsFUDcx5JPuanr8v8h9Pn/mcP4s07w/a+Db2eQnUrma0kNs9xctcPI2wneoYkDH3sqAAB2rU1jCWvhiV2CpHfQ7mY4AzE6j9WA/GtiDQtItvP+zaVZQ/aVKz+Xbovmg9Q2ByD71ZntLa5tGtbm3ilt2Xa0MiBkI9CDxins7+n4C/4P4nM+I7W0bxPpd7qNxcQWTQy2pngu5IBHIWQqGZGHB2sOTjIA64q0dC0KHULNJ768luDKJbeGfVZ5NzJ82QjSEHGM9K2o7CzisfsUVpAloFK/Z1jAjx6bemKjsNH0zSt39madaWe/732eBY931wBmhaA9SjpAH/AAkmvnHPnQ8/9sVqNv8Akoi/9gpv/RorbSGKOSSSONFeUgyMqgFyBgZPfjik8iH7T9o8pPO2bPN2jdtznGeuM84pW1X9dGgeqa/rdMwfB11FBoiaTPIEvtNJgnic4bgnD47qwwQferHiCL+0vD73GmOk1xasLm2aNgQ0kZztyPXBU/U1ev8AR9M1QodT060vCn3DcQLJt+mQcVS1i9lsLMafo1lM13NHstvKgPkw9tzPjaoXrjOT2Bod7abjW+uxX8OXEeuX134giJa3lVbazJ/55ryzfi5I/wCACuhqrplhFpel21jb/wCrt41jBPU4HU+561aqnbZEq+7CiiikMKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo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AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigCOWCGdo2miSQxPvjLqDsbBGR6HBIz70T28N1A8F1DHNE4w0cihlYe4PWpKKAI7i2gu7d4LqGOaFxho5EDKw9CDwagsNK0/S0ZNMsLWzVjllt4VjB+uAKt0UAUW0PSX1AX76XZNeA5FwbdDJn13YzVW/t5JfFOlSeSzwrBcLI23KjOzAJ6c4NbFFAFOx0fTNMZ203TrSzaT75t4FjLfXA5qxcW0F3bvBdwxzwuMNHKgZW+oPBqSigCpYaVp+lxsmmWFtZoxyy28Kxgn3wBVgQRC4acRIJmUI0m0bioJIGfQEnj3NPooAjeCGSaOZ4kaWIERuVBZM9cHtmqp0PSTqH286XZG8zn7SbdPMz67sZq9RQBHcW8N3bvBdQxzwuMPHIoZWHuDwagsNK0/S0ZNMsLWzVjllt4VjB+uAKt0UAFU7/R9N1XZ/aenWl5s+59ogWTb9Mg4q5RQAyKGKCFYYY0jiQbVRFAVR6ACqdtoWkWV2bqz0qyt7hs5mit0Vznr8wGav0UAMeGKWSN5Ikd4iWjZlBKEjGQe3BI/GkmghuYwlxEkqBgwWRQwyDkHB7ggGpKKAK97YWepW5g1G0gu4SQTHPGHXPrg8UTWFnc2X2O4tIJbXaF8h4wyYHQbTxirFFAFax02x0yExabZW9nGTkpbxLGCfoBU0UMUAYQxpGGYuwRQMseST7n1p9FAEaQQxzSTJEiyy48xwoDPjpk98VCmmWEeoPfx2Vul5Iu17hYlEjD0LYyRxVqigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii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W3a2fep8wLEFbgHIwfXFdLRR0sHW5yngvTNV0D4bW1jNaouqW8UpWB5AVLlmZQWUkYOR09a3NCm1S40K0l1+2htdRaMG4hhbciN6A5P8z9TV+im3dtgFFFFIAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqjaf8hjUP8Atn/6DV6qNp/yGNQ/7Z/+g0AXqKKKACiiigCj/wAzD/26/wDs9Xqo/wDMw/8Abr/7PV6gDF8Ua/J4f02KW0sv7QvLiYQ29r5vl+Y2Cx+bBxhVY9O1XtI1OHWdFs9Stv8AU3cKzKM9Awzj8K4fxNq2tyfEi2Tw94eOuro1oXmj+2R24jlm4U5fqQingf36w7a+1WD4U+KNGmsptOv9MnO+0jlErw2sriTCsvBwjOMj+7SWzf8AXb/gja1S/rv/AMA9StNb0rULyW1sNTs7m5h/1sMNwrvH9VByPxovdb0rTbmK31HU7O0nm/1UU9wqM/0BOT+Fc14XHw8W8sx4T/sY3ohPlfYyhn2Y534+bp13d/eub0ZvBL3mvt47Ol/23/aM4nGq7PMEQb915e/nbs2421XWwlqrnp19qNlpdqbnU7y3s4AQDLcSrGoP1JAqS3uoLu2S4tZ454HG5JY3DKw9QRwa8r+JDXH/AAm2kKT4d/s/+z2NuPEm/wCymTd82Mcb9u3G7tnFT+GdMiTwH4ni1bWtBh0y9cgyeH5y9vZ7kCtgH7vY46cnpU/Zb/rewdUj0Ww1rS9Ullj0zUrO8khOJUt51kKfUAnH40k+t6Va6hHYXOp2cN5Ljy7aS4RZHz6KTk1554LvNIsPGFnplrbeGb24mt5BHqfh/ajBVCkiaNc7d3HO4jI7Vla6/hzRNU1fUjN4Z8QJJdvN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iigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/6DV6qNp/yGNQ/7Z/8AoNAF6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gCGK0toJ5poLeKOW4YNNIiANIQMAsR1IHHNCWdrHdy3SW0K3EyhZZhGA7gdAW6kDJxn1oS9tZLySzjuYXuYlDyQLIC6KehK9QDiiG9tbm4ngt7mGWa3YLNGkgZoiRkBgOhxzzQBXstD0nTbmS407S7K0nl/wBZLBbojP8AUgZNF5oek6hdx3V/pdldXEX+rmmt0d0+jEZFXqyo/FXh6a++xQ69pkl1vKeQt5GZNw4I25zn2oAuX2nWWqWxt9Ts7e8gJyYriJZFz9CCKjstF0vTbSS107TbO0t5STJDBAqI5IwcqBg8cVdooAo6domlaRv/ALJ0yzsfM5f7NbrHu+u0DNNbQNHfUxqT6TYtfA5F0bZDKD/v4z+taFFABRRRQBn2mg6PYXr3ljpVjbXMmd88NsiO31YDJp1xoek3eoR391plnNeRY8u4kt0aRMejEZFXqKAIWs7Z7xLt7eJrmNCiTFAXVTjIDdQDgce1ENnbW8081vbxRS3DBpnRArSkDALEdTgAc1NRQBnnQNHOqjUzpNib8HIu/syeaDjGd+M9PercNrb28kz28EUTzv5krIgUyNgDcxHU4AGT6VDd6nZ2N3Z211NsmvpDFbrtJ3sFLEZAwOFJ5xVugCve2FnqVq1tqNpBdwN96KeMOp+oPFMTStPj0w6dHYWyWLKUNqsKiIqeo2Yxg+mKh1LxDoujzJFq+r2FhI67kS6uUiLD1AYjIpdN1/RtZkdNI1axv3jGXW1uUlKj1IUnFG4EFr4R8N2N1Hc2Ph/S7a4jOUlhso0dD6ggZFa9ZGk+JLPWdX1bTrWK5SbSpVinaWLarFhkbT3H5fkQa16OgdSFbS2S8e7W3iW5kQRvMEG9lBJClupAyePeo7nStPvZXkvLC2uJHhMDtLCrFoyclCSOVJ7dKtUUAZFr4R8N2N1Hc2Ph/S7a4jOUlhso0dD6ggZFF34S8OX93JdX3h/S7m4kOXmmso3dz7kjJrXooApyaRpsulrpsun2r2KqFW1aBTEAOg2Yxj8KdBplhbaebC2sbaGzKlDbRwqsZU9RtAxg1Jd3ltYWr3N/cQ20EYy8szhFX6k8Cksr601K1W5066hu7d/uywSB0b6EcUbhsRf2Rpvl2kf9nWmyyIa1XyFxbkDAKDHy/hirlFFADJoIrmB4biJJYnG145FDKw9CD1qpZaJpWmW8tvpumWdpDN/rI4LdI1f6gDBq9RQBHBBDa28cFtEkMMShI441CqigYAAHAA9KqaloOj6wyNq+lWN+yDCG6tkl2/TcDir9FG4FOTR9Mm0tdNm060ksFAVbVoFMQA6AJjHH0qS30+ys332lpBA/lrFuiiVTsXO1eB0GTgdsmrFFAGX/AMIxoH9oi/8A7D037aH8wXP2SPzA397djOfer0VnbQXE88FvFHNcEGaREAaUgYBYjk4HHNTUUeQEFtZWtlZraWdtDb2yghYYowqAHk4UcdzVax8P6NpjzPpukWNo042ytb2yRmQejYHP41oUUAYsXgvwvBMksPhvSI5I2DI6WEQKkcgg7eDV270XSr+8iu77TLO5uYf9VNNbq7x/RiMj8Ku0UAULjQdIu9PWxu9Ksp7RH8xbeW3Ro1bn5gpGM8nn3NN07w7omjzNNpOj2FjK67We1tUiZh1wSoHFaNFAGfbaBo9lfPe2ek2NvdyZ33EVsiyNnrlgMmrVzZWt4Yjd20M5hkEsXmxhvLcdGGehHqKmooAKKKKAM+90DR9RvI7vUNJsbu5jxsmntkd0xyMMRkVbFrbreNdiCIXLII2mCDeVByFLdcZJOPepaKAIrm1t722e2vII7iCQbXilQMrD0IPBqC00jTbAxGx0+1tjDGYozDAqbEJBKjA4BIBx7VcooAy7rwxoF9e/bL3Q9NubokHz5rSN3yOnzEZrUoooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/6DV6qNp/yGNQ/7Z/8AoNAF6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gDz74oXL+G1sfFOkMg1iBjapAVLfbInBJQgcnaRvHpg+tbPhWC10HwGl9aPLqzzQtfTz2yb5byVhuYqOMk9APYCrjeG/tHjNdev7oXC29v5Nla+Vhbct/rHzk7mbgZwMDjmjw14cPhoX1tbXfmadNOZrW1MePsu7lkDZ5XdyBgYyetEdmv69PnuN7p/wBf0tiDw54w/wCEivZbf/hHdf0ry49/m6nY+SjcgYB3HJ56V5VYxafqmg6xpMPgG81XVri9vEi1QWKLEGMrbT9oJyNv9MV7xWP4Z0H/AIRzSpLP7T9p8y6muN/l7MeZIX24yemcZ70rJv5fqhXaXz/RnNalceKNNvfC/h7Sb63NzcWEqXVxcpvUNGsYMuOrEZbAyAS3PSkm1Txf4V0HUk1ia31e6+0QW+l3zRLCszTEL88aH5QjH8RXU3mifa/FGm6x9o2fYYZovJ2Z3+Zt5znjG30Oc07xDoVt4k0OfTL1pI0lwyyxNteJ1IZXU9iCAabd9X8/v/yBJKy7HKx3Hi3wtr2kr4h1231uw1W6+yMq2S27W0jKWUqVPzLlcHPNNt7jxh4uvLy/0PXbXRdNtbuS2t7drFbhrny22s0jEjaCwONvar+leCtSTWLXUPFHie411rBmazhNqlukTEbdzBfvsATgnpk1FP4F1W21S6m8NeLLrRrG9mae4shaxzDe33jGzcpnrxnmjr/Xl/we4f1+f/AM34h+OX0LV7LRf7eg8PNNbG5m1BrFro/e2qiIARyQxJPYVJ4T8b6jrvg/XpdNmh13UNLytrcR27QreZTcpMZwQc5BA64461v+IfCt1qd3b6jomtz6NqlvEYBdLCsyyRkg7XRuG5GQe2TT9P0PXY/D93Y6x4plvryZiYb+Gzjt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nmpvbUryO3orm4ZfEus+CbCW3kt9I1e5iRrhpoDIIcj5tqEj5umA3TvVLwlf6/b+KNU8O+IdRh1c2cENxHfR24gbDlhsdV4B+XIx2/Sra2Jvpc7GiivPtX13XNZ1fVodH12y8M6Po0iwXGp3MKStJMQCVAchVUbgMnnJqetij0GivNtT8T61p2laFNba/Y6sPPmlvLqyiQpdW8Q3OOMhWC5ztPUVeudb1vUPiE2m6bqQs9Nms7iC3cW6SYuEWNjLzyQPNA25xlTT62X9af0vUS1/r+vU7uivL7ew8fTeL7zQ/wDhYOPstpFc+d/YsHzb2ddu3tjZ1z3r09AQihm3MBycYyaOlw62FooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/wC2f/oNXqo2n/IY1D/tn/6DQBeooooAKKKKAKP/ADMP/br/AOz1eqj/AMzD/wBuv/s9XqAPO9T1i78NfFDUr3/hHdb1SC80+3ijk06zMqBlZyQzEgD7wqBtP8WW/hjxL4gtrR7TXdXnjeO0hZZJYIE2pgdjJs3HHrjvxXpdFK2lv63uPrf+trHj/hLTdRk+IWj6iLfxi9lHFcK8viSQN5bFB91B9wH1PXgDpXRanqd94S+IGp6k/h7V9WsdTtbdY5NLtxO0bx7wQy5GPvA5rvqKb1t5ErS/n/X6HmHxA0e+uPENh4hhTxOtm1h9nlj8PyiO6ibdvG5D94HOCB0Kitn4aWFvb2Go3UEfiZJbq4Xzj4kUCdyqABhjquMDJ9Pau2ooWl1/W9xvXV/10MnQdYu9XW+N7pFxphtrt4IxOf8AXovSReBwfy9zWtRRQB574h0m8v8A4oQ2v9nTTaXqFlALu58s+Uohlkk2M2MZJ2jHoTWBH4Z13V/DPiOwks7yC7thZ2tu7fuWultnJDRuf7y4w3Tca9hopWsrf1uN6u55F4S06G58Zac93F8RjPaM8kb66Q9ojbCDlsdwSAR1qVpte0rwzrvhC38L6hd3c73jRX6oPszxSlm3lxyXw2NgBJIAr1iih6qwJ2dzmp9Vm8L/AAzj1JrGS5lsNOjd7Ut5bHag3AkjjHOeM8dK19F1Nda0Kx1NImhW8t0nEb9VDKDg/nUGt+GdH8R/Zv7csI71bWTzIklJ2hsY5XOG+hyK1FVUUKgCqowABgAVbd22+pCXKkl0FrzHxl4nuX8W6OLfwn4luY9G1B5ZpoNNLpMvlsmY2B+blh1xxXp1FR1TK6WPOvGMt3qn/CP6rdeH9W1HQNjy3mkxwjz/ADCB5fmQ5+YDnK5wD1qz8ObC5ttQ1m5tdJvdE0G6aN7LTr4bXjfB8xhHk+WpOOK7yimtAeoE4BPp6CvKbXwV4s8RaZq14/iVtGg16aWSfTZtJSRwh+RVZnIYHYq8cYr1aila47tHkE+vX2mX/gS+1jRdUur63tby3mtLa1LzsyqqbwhxkHG7Poa2UtNU1rTfGWvTaRc2H9p6Z9ls7KZP9IcJHJ8zIM4JL4C9eK7S70O2vPEGnaxK8ouNPSVIlUjYwkADbhjPbjBFaVOXvLXz/FsI+61bpb8DI0XToG8K6RbX1nGTb28DCKaIfupFUYOCOGB/EGteiinJ3bZEVypI5H4g+ItX0PTraHQdK1C9nvHKPcWVobg2qDGW2dC3PygkDg56YOLZQQ+J/AOseGtJ0LXdHka3LC41m18o3EzHdvL5O5iwyT716RRU2umn1Lvqmuh43pGiNqMFpodl4O1TS7xrqGfWdW1Nd3mCNw7BJiSZNzKMYwOc4rY+IPiG5k1jTbG08L+Irv8AsrVYLuW4ttPLxSoqkkIwPJ+YDnAyDzXplFVd3X3/AJf5E2tf7vz/AMzzzxhcX2vaPoWpDQdXn0Xz3k1PSPK2XUigEIGj3fMu4ZK55yKX4f2UyeJtUv8AS9Dv/D+gXEKbLC+QRE3GTudIgTsG3A7Z49K9CooWjuhvVWCvH5tDXwz421S61LwhqviR7i6e50mWBfOt4TJyyspO2M7/AOIg8YI6c+wUVPW4+ljze5uNf8B/DjT7Ow0u61DVrqV2uHsrY3AtWkYu7bR97G7ABIBI61q+ANUtpYZdPtfD/iHTmUGee71mz8o3UhPzMWydzH07AccDFdnRTW7YnsZOnaxd3uv6pp9xpFxaW9kYxDeSH5LrcuTt47dO/wCHSuK8a+Ir+bxI+iXXhvxFc6DCqtcPplg0v25iAfL35AEYzzjJbkcDOfS6KXYfc848T26eJdG8P69/wil9c2mm3LmfRbq2CTmIqUyIicHBCkL3FT+CNOWXxbe63pnhqfw1pclmtv8AZriBbd55Q5O8xKcLgcZ75r0CiqWjv/XYl6q39b3Mmz1e7ufE+oaZLpFxBa2scbxX7n93cFhyq8dR9T744zzni/U9Ln1b+zNT8Bap4gkjTEVymmpLCNwyQsrEbe2TxjFdzRU2uUefG78Q+BvhXYQwaVdanqwPlLBbo1ybZWZmXdjlgi4XqASAMjrU/gDVoZJpbEaB4ktbuYG4u9S1iw8kXMnA5bccH0UcADA6V3VFVfVt9SeiQV5tei58Kazrtvqfha88RaDrNyLxPsVstyVkKqGSSInplQQen9PSaKnrco8u8J6HdpdaDHdaNcWdmz6pKYJIdqwJK48tWC8KSpI2/wCFbieG/wCwvEvhK30xLqazs0vUmncFzl1DbpGAxywPXqa7Wintt/X9XEczZ2lwvxR1W7aCUW0ml20aTFDsZhJKSoboSARx7iumooo6WDrcKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqjaf8hjUP+2f/AKDV6qNp/wAhjUP+2f8A6DQBeooooAKKKKAKP/Mw/wDbr/7PV6qP/Mw/9uv/ALPV6gDMstdtb7XtR0hEljutPEbSeYAA6uMqy4JyOCOccinWmt217ruoaVAkpl09YzNIQPLy4JCg5znAyeO4rnPEUkfh/wCIeja7Iwjtb6GTTbtz0BAMkRP4q4/Gjwlotvrvgm7m1u3Mq+I5pLy4iLFSY3P7tcggjCKlCu1f+r9PvWoPR/1t1/HQ3dAuNduBf/8ACRWVvaFLt0tPIk3eZAPus3JwT+H0Fa9cR8NNLs9FTxJp2mQ+TaW+tSJFHuLbR5UXGSST+Ned+MGg1GHWPEuj+F76byJZRH4gn1zyWhkRsfu4d3KgjAXGT9aTaVvRP8EOz19T3uisDXrDT9c8Dy2viC8a0s7iBDPcCYRbOhzuPA59eK27eNIbWKKJiyIgVWZtxIA4JPf61TVm0SndJklcxb/EDQ73xVDoNg891cStInnxRHyEeMZZS5wCQP7uevOK6euM1+KOH4meDUhRY1xfnaowMmNST+dJbj6HZ1V1PVLLRtNm1DVLlLa1gG6SVzwvOP58YqS7vLawtXub64itreMZeWZwiL9SeBTmWG6gG4RzRPhhkBlbuD/I0egepj+GfFth4rjvH02K6jWzmELG5h8suSoYMAecEEdQD7VuVx/gz/kZ/GX/AGFV/wDREddhR0T8l+QdX6sKK5LxFF/ZPjbQ/ECfLHOTpd4f9mQ5iJ+kgA/4HXO3t5e2/gXxZ4wsNwvNSl22siuFKWyMIkYE8Dje+f8AazSvpf8Ar+tbjtrb+v60Z6fRXj3hXw/runeJ9LvtK8GXGi28kudQuz4gS8W6iKnJZM8nJDAj8qyfEem2/ibWPEkV74d1rX9Ua7lt9M1C0ZvstsAAFQksFXa2d2QQTmm+39dP8xLX+v67Hu9FeeLpUHh/xl4D02JEhSCyvIwocld+xCwBYknnJqlJdQXl78UpLSZJoxZIhaNsjctqwIz7EEUS0Ta8/wAHYcE5NJ6bfieoUV55ofw7tZLPQdfh1G8XW41gnlvpZWcyx7QWh2bgqoQcDA4969DqpKzsRF3SaCiiipKCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiig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0754Fa/i3w54q166ns4v+Eau9Hm+5/aVrI09tlcHZtOCc5IPBpsS31F8ZanBpniLwhqOrulnDDNcyTlmyI/9GfIz354461u+HL/WNVhmv9TtI7G0mYGytmQ+esf96U5wCeu0DgdST0zbvwY90vhi2uZo7600lJIrs3Wd1wrQGLpg5JJycnp3NX/DOk6noQuNOuLmO60qIj+z5HdjPGn/ADyfIwQvZs5xwRT05n/X9f8ADhrZf13/AK/pm9RRRSAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/ACGNQ/7Z/wDoNXqo2n/IY1D/ALZ/+g0AXqKKKACiiigCj/zMP/br/wCz1eqj/wAzD/26/wDs9XqACiuU8R+JdWi12Hw94Tsba71WSA3Mst47LBbR5wC23kknIAHpWhpN/q9potxceNhptnJbEs89pM3kMmAd3z4K9xg+lHS4dbG3RXPaB498MeKLyS00LV4rq4jBJi2MjEDqQGA3D3Gaqz/E7wba3MVvca7BHLJI0QVkf5WVip3cfKMg8tgHr0oA6uiuJ8afE3RvCOoWlhPdxi7kmiaeN4ZG8u3Ync4KjBIx0yT7VtaJ4z8P+ItLudS0jUUms7QkTzOjxLHgbjneBxjnNG6uHWxuUVz+geO/DXii8ltdC1aG6uIgS0W1kYgdSAwG4e4yKqT/ABO8G2tzFb3GuwRyySNEFZH+VlYqd3HyjIPLYB69KAOrorifGnxN0bwjqFpYT3cYu5JomnjeGRvLt2J3OCowSMdMk+1b3hzxXovi2zluvD979rhhk8t28p0w2M4wwB6Ghaq6B6GxRRWJoetXGp61r9nOkSx6bdpB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Drep6HafDvSrH4sTbXvYYxcIVlJeVArHJiGQQcegp/w0hSA6qmirer4Y3xnTFvFcEHafM2b/AJvLztxnvuru6Kd9W+4raJdgooopDCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/8AoNXqo2n/ACGNQ/7Z/wDoNAF6iiigAooooAo/8zD/ANuv/s9Xqo/8zD/26/8As9XqAMvXvEuj+GLIXevahFZQscKXyWc+iqMk/gKXQfEek+J9O+3aDepeW4YoWUFSrehBAIPI6iubSK3vPjbcf2gFkls9IiexR+dm6RhI6j14UZrR8cX9zpGgA6Q8dpeaheQWguigPlGRwnmEdyB0z7ULZPv/AJ2Drbt/lc6aivPV03UfBXijQxF4k1XV7XVblrW5ttTmExB8tmDxnA2gFeR6GucW18QXfgjW/E0ni3VoZNLuLx7K2hlAjxHI3EuQTIOMAE4AwKV1/Xy/zDy/rr/keuXuo2mnLAb2YRC4mWCLIJ3SMcKvHrVmvMPHugnWk8PatJresWbXl5Zwm3tbvZDGWyfMRccPzw1aeuQ3fw8+H+oz6dqusatdSSxrFLfy/apYi7KnyDAzjOQvc09k797fl/mC1at1V/zO8oryTwjqesW/jCwgtYPHE9lds63x8RWn7qP5SVdHH3PmGMdMGqq2viC78Ea34mk8W6tDJpdxePZW0MoEeI5G4lyCZBxgAnAGBQ7LcNz1y91G005YDezCIXEywRZBO6RjhV49as15h490E60nh7VpNb1iza8vLOE29rd7IYy2T5iLjh+eGrsdI0Ofwtot6tnf6rr1wQ0sSaneh3ZgvEauQAoJHfpnNGyd+jt+Qt2rdV/mb1cPL8ZPAcMzxS67tdGKsPsc/BHX+CtTw7rfifUtQeHX/CP9i2yxFluP7TiuNzZGF2qMjgk59qr69/yU3wl/1yvv/QEos7oZ0WmanaazpdvqOmy+da3KB4pNpXcvrggEfjVquW1u4utI8caJfG5m/s6+DadPCXPlpKfnifb0BJBXPuK57WtQ1KXwL4w8RwX91CsxaPTgkzKIoojs3rg8FmDnI6jFJtWb9f6/UaWqXp/X5npVFecNY6z4Y1rw/qU/ifUdTl1W9S0vLS4YfZyHRjuijA+TaVHc1zOp+I9X1fWNUukHjlJbS7mgsl0SzVrJRGxUbwf9YSRk59cU9v67W/zEtf673/yZ7bRWBbpqfiLwBEtxNPo2p3tkokkRCslvKV5IU4IIPbg/StfT7aWz022tri5ku5YYlR7iQYaUgYLH3PWm1ZtCTukyxVZdRtG1V9NWYG8SETtFg5CEkA56dQfyqzXk48BCf4m31n/wlnieM/2bHcedHqWJTulcbN237gxwOxJpfaS/rYr7Lf8AW56xRXmnj3U73SH0Pw3azeI57eS2d7i40hBNfyiMKo+Y4xktlmxnOPWpvA8mq61p+t6NqH/CTWtiqoLK91eM294u4HcA6/e2kAg9ecHijdNoW1rnotVjqNoNVGmmYfbDCZxFg58sNt3Z6dTivPvCmt6n4p8RQ6XqGoGJdBDNNJbSMn9quHaNZBjGYxtO4cgucdBVO78Ci4+Kj23/AAlXiWEzaa915kWo7XTMwHlqdvEYz936UdV53/INk/K35nq1Ys3imyhtdbufKuHh0UH7Q6KuHYJvZU55IBAOccmi9uU8I+DZJpJ7m++w2+1HuZN8079FDN3ZmIH41iahpL6L8HNVtblg922nXE11J/fmdWZz/wB9E/hipk7JtdP6/r5FQV2k+p11jdpf6fb3kIZY7iJZUDjkBgCM+/NMbUrRdWTTGmAvJIWnWLByYwQpbPTqwFeZ2llrPh2DwhrMniPULuTUbm2tJ7FmAtFikjOAkeOCoA+bOTijUfA/2n4sJb/8JR4kh+06dPdeZFqG14v3yfu0O3iP5vu+w9K0kvfsu7X3K5nF3jd9k/vdj1amTy+RbyS7Hk8tC2yMZZsDOAO5rzjxPp2qQ6xomgad4j1W3txpd29xcm4JnmCGMg7sY35IG7GQC2OtQfD681p9c0S41XW7q/8A7Y0R7mWCVv3UbI8YQovY7W+Y9zk1K97Rf1v/AJFXtv8A1t/mdd4X8Z2/ii6vrWPStV0y4sRG0sWp24hYh920gbif4T1xXR1yei/8lS8Uf9elj/KWusoDZ2/rYKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/+g1eqjaf8hjUP+2f/AKDQBeooooAKKKKAKP8AzMP/AG6/+z1eqj/zMP8A26/+z1eoA5/xL4M03xRJbz3Ul3Z31rkQX1hOYZoweoDen1Bplv4H0tPDV1ot/NfapBdtunmv7lpZnYYwd3YjAxjGMV0dFHSweZy+heAdP0TVE1GXUNV1a7iUpby6peGc26nghBgAZHGetWY/B+nx+FdQ8PrNc/ZL8zmVyy+YvmsWbB244LHGQfxrfooeu4bGPq/hjT9b8Opo16ZvIjCeXLHJskjZMbXDDowxVSw8FWdt4fvdH1LUdU1u1vDmQ6pdec6jA4VgBt6Z46Hmujoo3v5gtLW6HK6J4FXQ9Wjvo/EviO8SMELaXuoebBgjH3dvbtzVuPwfp8fhXUPD6zXP2S/M5lcsvmL5rFmwduOCxxkH8a36KHruGxj6v4Y0/W/DqaNembyIwnlyxybJI2TG1ww6MMUeHPD3/COWctv/AGvquq+ZJv8AM1O58504xhTgYHHStiijq33C2iQVnXei297runarK8on09ZViVSNreYAG3DGf4RjBFaNFAHE+PpbzW4m8KadouoSz3YjkGp7Nlta4fO/zM53rtztAyeKseNdGaL4T6jo+kW0sxjshBBDChd2AwAAByTxXXUUmrxce407ST7HI+Hfh/Y6Re2+pXWo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Qr5b7jlsrjBySSfWm32i6VqaQrqWmWd4sBzELi3WQR/7uRx+FSlay9PyaG3dt+v4tM4T4V6pZ2HgvU7rUbzTLS0j1WYCW3kMdomduBGXxhSTwD61d+HGuaTdPrlra6nZzXE2s3c8cMdwjO8ZYYcAHJX36V1s2iaVcWc1pcaZZy207+ZLC9urJI3HzMpGCeByfQVDYeGNB0q6+06XomnWU4BXzba0jjbB6jKgGqvr8rfl/kTbS3nf8/8AMy4P+J58Qpp/vWmgxeRH6G5lALn/AIDHtH/AzT/G0slzp9toNqxW41qb7MSvVIcbpm/74BH1YVraPo9volk9vbPJJ5k0k8ksxBeR3YsxJAA746dAKG0e3fxCmsSPI9xHbG3jQkbI1LbmIGM5OFBOeiil2T/rr+enoPu1/X9b+pgfEmKOD4Va1DCojjjs9iqvAUAgAVQ8H2WgWmtK+m/EHUNeuGhZRZXOtR3K44JYIOcjHXtzXcXVpb31rJbXsEVxbyjbJFMgdXHoQeDVCx8L6Bpd0LrTND02zuFBAlt7SONwD1GQAaOrbB7JL+tjy6If2P8ADqy8QL8sMlteadff7kkknlOf92TA+khr07wl/wAiXov/AF4Qf+ixVw6Vp501tONhbGyYENbeSvlkE5IK4xyeasQwx28KQwRrFFGoVERQFUDgAAdBQtE1/XX/ADB6tP1/T/IJpY4IXlndY4o1LO7nCqB1JJ6CuI8KQyXHie41HwwjWXhiYMXjmX5LuY/8tYE4Ma+rdG7L/FXcSRpNE0cqLJG4KsjDIYHqCKVVCqFUAADAAHShaO4PVWFooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/wCg1eqjaf8AIY1D/tn/AOg0AXqKKKACiiigCj/zMP8A26/+z1eqj/zMP/br/wCz1eoAKCQASTgDqa5vxP4kuNOvrHRdJijOqaluFvLdfJBE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z5F8vAwOQwJ4PcmotH+HfhbQbW/t9J0v7PFqMPkXS/aJW8xMEY+ZjjqeRg0S97m8yoPlcW+hwkfhi08P6N4N8R2s93JrN1eWUM93Lcu3mRSjDR7c7QoBwAB2FetXV/aWTQreXUFuZ3EcQlkC+Y56Kuep9hVSbw/plxp9jYzW2630+SKW2TzGHltH9w5zk498570av4e0rXZbOTVrNLl7GYT25YkeW478HnoODxVN3b9fw0/4JCVkvT8dSl4yu9bs/D7y+HYPNn3ASui75Yov4njjOA7gdFJH49Cvg600SHQUuPD032uK6JkmvHbdLcSd2kY87s8YOMdMDpW9VGLSbWza+m0yGK0ub075ZVTIaTGA5XIyfyzU7XK3sYukf8TvxtqWrn5rbTVOm2noXyGnYfjtT/gBrll8JaT4p8f+L/8AhIpJ5LK1lt2FsLloogxgXMjbSMkAcZOBzXoGgaPHoOhWumxSGbyU+eVhgyuTlnPuWJP41xx+Gml654717VvFOjrcxyywGxkadgGURANlVb+8P4hRbW3l+q/4cL9TY+G1zNdeA7NpriS6VJJooZ5DlpYllZUYnv8AKBzXVVHBBFa28cFtEkUMShEjRcKqjgAAdBUlNu7Egqjaf8hjUP8Atn/6DV6qNp/yGNQ/7Z/+g0hl6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gAorH8QSa5bJBeaCkN2sBJuLBxta4X/Yf+Fh2B4OcHHWp9D12x8Q6aLzTZCyhjHJG67XhkH3kdTyrD0o3A0aKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/+g1eqjaf8hjUP+2f/AKDQBeooooAKKKKAKP8AzMP/AG6/+z1eqj/zMP8A26/+z1eoAx9f0vUNYSCztNRNhZOT9seEETuvZEbomect19Mdav6dp1npOnxWOm28dtbQrtSOMYA/+v796s0UAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s//AEGr1UbT/kMah/2z/wDQaAL1FFFABRRRQBR/5mH/ALdf/Z6vVUudPS4uBN500ThNmYn28Zz6Uz+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9VG0/5DGof9s//AEGj+y/+n69/7/f/AFqltLFLR5HWSWRpMbmkbJ4oAs0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAf/9k=\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "647d6f05-9083-49e9-b938-1d02ad29cd67" + "b2e54795-8d49-4da7-98ff-03b625b39d63" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1137,38 +1137,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:15 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcB8=\"" + "\"AAAAAAAACkM=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b279b959-3e6c-41e4-a3e4-8cebf3836306" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e5f29a53-c5e3-4111-9f7b-5479b03617d3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "9a79612c-6fd5-4945-b603-c344ff24aeed" + "c4e908c2-1d23-4155-ac20-02d3351f660d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020420Z:9a79612c-6fd5-4945-b603-c344ff24aeed" + "WESTUS:20200207T010015Z:c4e908c2-1d23-4155-ac20-02d3351f660d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:20 GMT" - ], "Content-Length": [ - "558" + "566" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1177,62 +1177,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues/attachments\",\r\n \"name\": \"newattachment8001\",\r\n \"properties\": {\r\n \"title\": \"attachment2024\",\r\n \"contentFormat\": \"link\",\r\n \"content\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/content/issue/newIssue2091/attachment/newattachment8001/attachment2024\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/attachments/newattachment5721\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues/attachments\",\r\n \"name\": \"newattachment5721\",\r\n \"properties\": {\r\n \"title\": \"attachment9474\",\r\n \"contentFormat\": \"link\",\r\n \"content\": \"https://apimsthslzlfkuwwyzgff2qn.blob.core.windows.net/content/issue/newIssue1762/attachment/newattachment5721/attachment9474\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/attachments/newattachment5721?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9hdHRhY2htZW50cy9uZXdhdHRhY2htZW50NTcyMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a4ccbcd-a604-470b-a436-6a6453db1725" + "afcd97a0-1f27-4278-8e50-3ab5bf762bc2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:15 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcB8=\"" + "\"AAAAAAAACkM=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f6a4fbe-1bdb-4333-bf3e-b8d9679be196" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5925f93a-0fcd-4471-b445-6e685e22b225" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "e3cd3dc0-e06b-4ed9-96bc-97182174bac3" + "e319c5ce-28a0-430e-98d8-6193117adac7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020420Z:e3cd3dc0-e06b-4ed9-96bc-97182174bac3" + "WESTUS:20200207T010015Z:e319c5ce-28a0-430e-98d8-6193117adac7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:20 GMT" - ], "Content-Length": [ "0" ], @@ -1244,121 +1244,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/attachments/newattachment5721?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9hdHRhY2htZW50cy9uZXdhdHRhY2htZW50NTcyMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07efbe03-1da0-4e57-9f0c-76f92358a0c4" + "5acd95fd-bc5e-4990-bb8c-8bae8b593a2c" ], "If-Match": [ - "\"AAAAAAAAcB8=\"" + "\"AAAAAAAACkM=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5dbbabdd-86ca-4b9d-8373-b9a2fee7fc6b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f11f70ff-76be-4c59-bb92-55b46c6edf3f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "8a27a597-19c4-4108-b8b4-ba716d6e9c11" + "911ae757-97b7-4b10-bfba-9270880e3514" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020421Z:8a27a597-19c4-4108-b8b4-ba716d6e9c11" + "WESTUS:20200207T010016Z:911ae757-97b7-4b10-bfba-9270880e3514" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:20 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/attachments/newattachment5721?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9hdHRhY2htZW50cy9uZXdhdHRhY2htZW50NTcyMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4852634-11fa-43dd-b02f-5f4f467c1fa4" + "f60e92bd-8984-4c04-95af-784d101baa97" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50f30995-f7ce-4dba-9660-ef86783d2eaf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8585152c-af8e-4342-a768-03d14972de83" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "dad69d30-c8d4-4d9b-9dd6-8f382306f1c6" + "479222ae-7c97-45f3-83aa-12018f35f7e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020421Z:dad69d30-c8d4-4d9b-9dd6-8f382306f1c6" + "WESTUS:20200207T010017Z:479222ae-7c97-45f3-83aa-12018f35f7e7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:21 GMT" - ], "Expires": [ "-1" ] @@ -1367,55 +1367,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762/attachments/newattachment5721?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mi9hdHRhY2htZW50cy9uZXdhdHRhY2htZW50NTcyMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a742ac4-2e3f-41fe-8691-c689137d2ee1" + "2c769395-0ea9-4ad4-abce-5a1692e6c1fc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29f43349-c02d-4545-a744-5e83a3717f44" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b0cb6bb6-90bc-4e76-8654-21437d5c6c89" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "b4b1ba80-4092-4427-b4bb-11e43844aba4" + "85ca7a5d-e641-48a9-95ca-ebb80052c604" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020421Z:b4b1ba80-4092-4427-b4bb-11e43844aba4" + "WESTUS:20200207T010016Z:85ca7a5d-e641-48a9-95ca-ebb80052c604" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:20 GMT" - ], "Content-Length": [ "92" ], @@ -1430,58 +1430,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64c1ec11-6887-4f4f-a97b-48c262035ce1" + "f0e6c4c4-77cb-4c2b-84cf-ac099e8ebe3b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcB0=\"" + "\"AAAAAAAACkE=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55721821-2dad-4e06-84ed-72162da5ad42" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a2ea34e2-8fbd-4a07-9d55-f860a4593724" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "be43b2e8-b4cb-4930-8996-bd666a79076f" + "60a037d1-1f09-43b6-93a2-e99402632806" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020421Z:be43b2e8-b4cb-4930-8996-bd666a79076f" + "WESTUS:20200207T010016Z:60a037d1-1f09-43b6-93a2-e99402632806" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:21 GMT" - ], "Content-Length": [ "0" ], @@ -1493,121 +1493,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79c106e8-bab2-4954-97f5-5825dd858cbd" + "3349b66e-ccc9-45d7-9f54-60da9748fe3b" ], "If-Match": [ - "\"AAAAAAAAcB0=\"" + "\"AAAAAAAACkE=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "010fd6df-26fa-416d-896a-e06e41965d52" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "16354100-4f03-4e81-bca9-3ae761b8e871" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "71279abc-dc87-4712-add3-9195501b2fde" + "8353b023-6157-48eb-9b94-eea7ce1cfdb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020421Z:71279abc-dc87-4712-add3-9195501b2fde" + "WESTUS:20200207T010016Z:8353b023-6157-48eb-9b94-eea7ce1cfdb4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:21 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/issues/newIssue1762?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvaXNzdWVzL25ld0lzc3VlMTc2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09aee579-cd5b-41cd-a88f-73899259891a" + "85cba6c4-213e-41f6-9a35-fd2e4a97d1bf" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44839ca2-3a65-496b-b484-ec65bbd61e3d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fed66b97-c1e1-42ee-9a75-bb3ed22d2cbe" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], "x-ms-correlation-request-id": [ - "4d6cdf7e-df90-4dd7-9200-10f898f07565" + "1a659d0c-9c9a-4612-bd75-e988f914f151" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020422Z:4d6cdf7e-df90-4dd7-9200-10f898f07565" + "WESTUS:20200207T010017Z:1a659d0c-9c9a-4612-bd75-e988f914f151" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:21 GMT" - ], "Expires": [ "-1" ] @@ -1618,15 +1618,15 @@ ], "Names": { "CreateUpdateDelete": [ - "newIssue2091", - "newComment8192", - "newattachment8001", - "title2214", - "description9766", - "updatedTitle5641", - "updateddescription6264", - "issuecommenttext6995", - "attachment2024" + "newIssue1762", + "newComment1868", + "newattachment5721", + "title6005", + "description5560", + "updatedTitle7464", + "updateddescription3793", + "issuecommenttext1512", + "attachment9474" ] }, "Variables": { @@ -1634,7 +1634,7 @@ "TestCertificate": "MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteApplicationInsights.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteApplicationInsights.json index 0e2ee6d69453..49b52c82db7f 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteApplicationInsights.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteApplicationInsights.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1afd1b57-5993-42ea-8db4-9d8964b330cb" + "c5dfb3c2-4891-4c5b-8655-5e56c42465c1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:03 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "902980ae-cc07-4b22-a32e-45fd376f79b4", - "fd35dd5a-8577-41d3-b1f3-77bd52111a24" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "25ac97e3-050d-43af-a97c-7df3351af5b8", + "d5687706-8da3-468d-8268-7559015b7bee" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "5b498c7c-c3d9-4151-9fb4-6b5b1a30c644" + "1fdce303-a674-4b45-a13b-6328c23850b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021439Z:5b498c7c-c3d9-4151-9fb4-6b5b1a30c644" + "WESTUS:20200207T005503Z:1fdce303-a674-4b45-a13b-6328c23850b1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:38 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7e041b2-2bef-49ff-a599-5b8467610d34" + "bd1e7c1e-1d88-4238-a365-7ce84f0b87a3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:03 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef725a14-f689-4276-998a-3542359ed9b0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1a91c0d0-ed9f-4894-a69f-96224c035e2f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "8ead3eb3-d50c-4a8b-889f-c9335eb303d9" + "2ce20b32-3107-40ed-95e5-6a402650675f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021439Z:8ead3eb3-d50c-4a8b-889f-c9335eb303d9" + "WESTUS:20200207T005503Z:2ce20b32-3107-40ed-95e5-6a402650675f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:39 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwbGljYXRpb25JbnNpZ2h0NzU5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription4739\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"a91fcd4f-5e9b-4dac-a2cc-a361c9023840\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription7622\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"7fc77e28-ada8-4b93-b1a2-39ca7f22e9f7\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "892c267a-437d-4a14-bbb4-004494b989eb" + "d3862065-802b-4b67-b102-25d6c26171dc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +168,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:06 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAchM=\"" + "\"AAAAAAAACYA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0084e69-8c40-4e9e-933d-33983f9875b0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8d2d3f74-958e-4bb6-864a-73daca9afc71" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "2c558c15-50ba-441b-91a3-2cbd9c252418" + "23310885-8714-4040-8bde-60c667a08be3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021440Z:2c558c15-50ba-441b-91a3-2cbd9c252418" + "WESTUS:20200207T005506Z:23310885-8714-4040-8bde-60c667a08be3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:39 GMT" - ], "Content-Length": [ - "556" + "564" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,61 +208,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight2357\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription4739\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea30fb597440f487b0e40}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight7592\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription7622\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5e3cb56a2393691028e5c615}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b41fdfb-8a92-48bf-91e1-51a919109d5a" + "aba71a17-78c6-40c5-b13c-a63b8f56bad2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c59cdfd-440f-4d70-8a44-629acaf40ab1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "72f3f9d3-27f1-44b7-a03f-52a98ddb51ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "1d46d99d-9385-4af0-8ff5-aec9d98b18ba" + "c1e47eb4-69f2-45bc-87d0-a1abf731764d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021440Z:1d46d99d-9385-4af0-8ff5-aec9d98b18ba" + "WESTUS:20200207T005507Z:c1e47eb4-69f2-45bc-87d0-a1abf731764d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:40 GMT" - ], "Content-Length": [ - "637" + "660" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,62 +271,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight2357\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription4739\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea30fb597440f487b0e40}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight7592\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription7622\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5e3cb56a2393691028e5c615}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwbGljYXRpb25JbnNpZ2h0NzU5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e532531d-2a7d-42d5-a93b-a979f5d75348" + "82cfe067-1e5e-48ae-80bf-e1b746c65530" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAchM=\"" + "\"AAAAAAAACYA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06584606-7bd3-4a25-b776-abafa471211d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f66567a7-ef6d-4bab-8375-ef1c968cb1e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "08b1f92d-6582-4b94-bc47-b710e503d757" + "06a47262-9882-43e1-9f06-f24a06219ea4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021440Z:08b1f92d-6582-4b94-bc47-b710e503d757" + "WESTUS:20200207T005507Z:06a47262-9882-43e1-9f06-f24a06219ea4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:40 GMT" - ], "Content-Length": [ "0" ], @@ -338,58 +338,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwbGljYXRpb25JbnNpZ2h0NzU5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7786a45-c803-4143-afb4-171ffb6c8f93" + "69977f2b-e2f3-421f-b287-b4eeab7db09e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAchU=\"" + "\"AAAAAAAACYM=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "723237d8-3194-4959-bd60-dc83cdbc16e6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cd85c413-86ad-498b-b741-088872daa5c6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "c02d6039-5ed1-4bc2-a3a8-b9ef5d2dc5f0" + "97b24692-b359-40cb-89e9-71478f0219cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021441Z:c02d6039-5ed1-4bc2-a3a8-b9ef5d2dc5f0" + "WESTUS:20200207T005508Z:97b24692-b359-40cb-89e9-71478f0219cc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:40 GMT" - ], "Content-Length": [ "0" ], @@ -401,64 +401,64 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwbGljYXRpb25JbnNpZ2h0NzU5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription453\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription5105\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "81536722-1a7b-4318-99b2-0a6600748186" + "ea8aa3af-0c9f-432a-ad93-9bbcbae47318" ], "If-Match": [ - "\"AAAAAAAAchM=\"" + "\"AAAAAAAACYA=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "114" + "115" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "480ab35b-cedd-4fb3-bf3c-f56473c5b427" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8d40f131-06b9-4498-8dcd-4a2c7f18e933" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "f87be578-0dab-4285-9e64-08f1ca3cb066" + "1b6d2ec5-9bdf-434e-a87a-bcf2ab28e671" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021441Z:f87be578-0dab-4285-9e64-08f1ca3cb066" + "WESTUS:20200207T005508Z:1b6d2ec5-9bdf-434e-a87a-bcf2ab28e671" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:40 GMT" - ], "Expires": [ "-1" ] @@ -467,60 +467,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwbGljYXRpb25JbnNpZ2h0NzU5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac3573b5-79df-4d4e-a64d-4e24e0c18ab5" + "5dbd96ec-4138-4ef8-9733-93d86ec32e1f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAchU=\"" + "\"AAAAAAAACYM=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad2dc409-7772-400c-8da0-5d3e5cb6d1a5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "126fc159-9e99-4ac9-927f-3dac565c1302" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "758cde65-2494-4775-88cd-cb6861b98950" + "9038771c-6675-4c8a-b2ce-a028983c8640" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021441Z:758cde65-2494-4775-88cd-cb6861b98950" + "WESTUS:20200207T005508Z:9038771c-6675-4c8a-b2ce-a028983c8640" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:40 GMT" - ], "Content-Length": [ - "553" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight2357\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription453\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea30fb597440f487b0e40}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight7592\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription5105\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5e3cb56a2393691028e5c615}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwbGljYXRpb25JbnNpZ2h0NzU5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e57e94f-ec5b-4bd0-9ca4-a4191185c00b" + "9333b92d-c08b-4cc2-a04b-b09ea704c860" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23145aa9-23f1-4599-80be-ebab20f26667" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4043b83b-11dc-4b7f-8aa5-41caf45f8f74" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-correlation-request-id": [ - "e5d9adaa-4342-465e-a08d-4cbe3dd50fa8" + "e5b80d6c-6fea-4349-8dd3-5328b7dbbc00" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021441Z:e5d9adaa-4342-465e-a08d-4cbe3dd50fa8" + "WESTUS:20200207T005508Z:e5b80d6c-6fea-4349-8dd3-5328b7dbbc00" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:41 GMT" - ], "Content-Length": [ "82" ], @@ -596,121 +596,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwbGljYXRpb25JbnNpZ2h0NzU5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab4d4e25-df44-465a-81ff-33a9d7fde759" + "2d2548a6-1b09-4273-bcde-6b96a1ed9a4c" ], "If-Match": [ - "\"AAAAAAAAchU=\"" + "\"AAAAAAAACYM=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c11dbfe-aa2d-482d-9d83-4d5aa8ed1267" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d74e7aec-f5eb-4207-8fb1-86987d36f6c8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "eac9042c-1a6a-4c42-a12a-7fc2ed731970" + "a587f5e6-2cd8-4292-bc62-b008ae095aad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021441Z:eac9042c-1a6a-4c42-a12a-7fc2ed731970" + "WESTUS:20200207T005508Z:a587f5e6-2cd8-4292-bc62-b008ae095aad" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/applicationInsight7592?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvYXBwbGljYXRpb25JbnNpZ2h0NzU5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "081b55dd-1ce1-44a2-aee9-a13e50ae5a83" + "e987edc8-97b1-417b-925e-fde5e3c35d36" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e80ff1c-d481-4098-b840-52c9db5375dc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5c773442-285b-4225-a82b-2a55faf12c76" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "e7988217-b810-43e4-a0fe-766d4c521ff2" + "db36aec1-0be4-4d8e-b880-229c0fbce3f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021441Z:e7988217-b810-43e4-a0fe-766d4c521ff2" + "WESTUS:20200207T005508Z:db36aec1-0be4-4d8e-b880-229c0fbce3f0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:41 GMT" - ], "Expires": [ "-1" ] @@ -719,57 +719,57 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0105c3e3-6928-4e3b-9b97-4f59f7063fd5" + "1d7a7b8f-b394-4de4-8af9-bfceb5d41c39" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fb626d78-47f8-4360-97c4-b6a3041fa874" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f130b3d6-3dee-4966-8ca9-ec09b76cd5f8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-correlation-request-id": [ - "1666f326-559d-412c-b168-be47cad20113" + "59e67172-3bf0-4328-8a40-cfa7f854d9e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021442Z:1666f326-559d-412c-b168-be47cad20113" + "WESTUS:20200207T005509Z:59e67172-3bf0-4328-8a40-cfa7f854d9e3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:41 GMT" - ], "Content-Length": [ - "1597" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -778,193 +778,130 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea0bab597440f487b0da3\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5caea0bab597440f487b0da3\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5caea0bab597440f487b0da4\",\r\n \"value\": \"8265566f-dafe-46a1-ba11-55c9ef4bbf14\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea1d8b597440f487b0de6\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5caea1d8b597440f487b0de6\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5caea1d8b597440f487b0de7\",\r\n \"value\": \"9077a65a-e8ff-46a0-93d1-e4ac43ebb7bc\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea30fb597440f487b0e3f\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5caea30fb597440f487b0e3f\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5caea30fb597440f487b0e40\",\r\n \"value\": \"a91fcd4f-5e9b-4dac-a2cc-a361c9023840\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/5e3cb4de2393691028e5c5f4\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5e3cb4de2393691028e5c5f4\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5e3cb4de2393691028e5c5f5\",\r\n \"value\": \"344ff8ea-0832-4121-a40c-0066057336dc\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/5e3cb56a2393691028e5c614\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5e3cb56a2393691028e5c614\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5e3cb56a2393691028e5c615\",\r\n \"value\": \"7fc77e28-ada8-4b93-b1a2-39ca7f22e9f7\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea0bab597440f487b0da3?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWVhMGJhYjU5NzQ0MGY0ODdiMGRhMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/5e3cb4de2393691028e5c5f4?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvNWUzY2I0ZGUyMzkzNjkxMDI4ZTVjNWY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6aec5b17-1c68-4388-94f7-dfb2fe8baf22" + "4f9c07fc-818b-4d0a-9cb7-ed06ac323749" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7954c248-a930-41b5-bb5b-6657e3f25b09" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "60dfbb2f-20bf-40af-9377-3be35bee21ae" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "5db08186-4c45-4acc-9d06-749eb11ead83" + "8cdbd209-a49c-4cc7-9673-51eebf6d0129" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021442Z:5db08186-4c45-4acc-9d06-749eb11ead83" + "WESTUS:20200207T005509Z:8cdbd209-a49c-4cc7-9673-51eebf6d0129" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:41 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea1d8b597440f487b0de6?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWVhMWQ4YjU5NzQ0MGY0ODdiMGRlNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/5e3cb56a2393691028e5c614?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvNWUzY2I1NmEyMzkzNjkxMDI4ZTVjNjE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5788833-85a8-475c-9a97-10cfc0891e0d" + "99624343-edab-4bd0-a023-f2a32296c9cb" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:09 GMT" + ], "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "fb2833a2-1382-4be0-802c-59a220082c2b" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "b449c3e7-4af7-4ddf-9592-c9e9facc3fd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190411T021442Z:b449c3e7-4af7-4ddf-9592-c9e9facc3fd8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Apr 2019 02:14:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea30fb597440f487b0e3f?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWVhMzBmYjU5NzQ0MGY0ODdiMGUzZj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2391e26-33c7-4315-a257-803782906077" - ], - "If-Match": [ - "*" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27414.06", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c18fc125-e26c-4aa0-9d32-27f23464192d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ba838da9-6acb-42a0-879a-9c2bfd03789d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14996" ], "x-ms-correlation-request-id": [ - "1d3d5d12-7818-47f6-9dfc-06e178a78b3a" + "0376c218-64a7-4c2f-baaa-c683e1180a8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021442Z:1d3d5d12-7818-47f6-9dfc-06e178a78b3a" + "WESTUS:20200207T005509Z:0376c218-64a7-4c2f-baaa-c683e1180a8e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:42 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -973,12 +910,12 @@ ], "Names": { "CreateListUpdateDeleteApplicationInsights": [ - "applicationInsight2357", - "newloggerDescription4739", - "patchedDescription453" + "applicationInsight7592", + "newloggerDescription7622", + "patchedDescription5105" ], "appInsights": [ - "a91fcd4f-5e9b-4dac-a2cc-a361c9023840" + "7fc77e28-ada8-4b93-b1a2-39ca7f22e9f7" ] }, "Variables": { @@ -986,7 +923,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteEventHub.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteEventHub.json index 42a89fbd3bab..79f502443db1 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteEventHub.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteEventHub.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b3958962-c6d7-4de3-9316-e8c36a93ab98" + "3bfe2f59-7b3f-460c-a664-0779f39083d9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:10 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28dbc92c-7ab0-43c3-99bb-8c95222faa5c", - "e9cc79ed-ff12-499e-ba8a-850efa13b96c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "19ccf62e-8de9-402a-bc10-c1ba0e25cf28", + "448e4f45-769a-4ead-b8c6-cc65660b910e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "e2714aba-a3e6-482e-9dad-b4bda95962f8" + "59361b96-1e44-46b7-8bc0-a2e0e21de866" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021444Z:e2714aba-a3e6-482e-9dad-b4bda95962f8" + "WESTUS:20200207T005510Z:59361b96-1e44-46b7-8bc0-a2e0e21de866" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:44 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ae2ebdd-887e-4f22-9dd7-20896f1209b6" + "f62d2df3-e98d-484d-9b0c-4e35993e5142" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:10 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c7e29d0-1897-476c-bfea-7596add1171b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "08ee3022-7d6e-4b9a-a263-43be73fa6056" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "a36c1081-cf4d-45c2-a6fa-6eea745ac850" + "2f5ea39d-4da3-4214-856c-c78a54d9908b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021444Z:a36c1081-cf4d-45c2-a6fa-6eea745ac850" + "WESTUS:20200207T005511Z:2f5ea39d-4da3-4214-856c-c78a54d9908b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:44 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,25 +136,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"CentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3984c2c6-7a4e-482b-a513-46aa00ae4acf" + "869a8ebf-e579-41f1-925a-e28815811bb2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ], "Content-Type": [ @@ -168,27 +168,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "debd5572-bb5a-4736-ae20-ae8f10e92b82_M10CH3_M10CH3" + "d03a74c4-a378-4ac2-ad9f-e9d35f85bc98_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "8a09e374-0a61-4207-b978-09f1175e55a0" + "ad620beb-272d-4b84-b9f6-7003eb4f089e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021445Z:8a09e374-0a61-4207-b978-09f1175e55a0" + "WESTUS:20200207T005514Z:ad620beb-272d-4b84-b9f6-7003eb4f089e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,11 +199,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:45 GMT" - ], "Content-Length": [ - "457" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -209,19 +209,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616\",\r\n \"name\": \"eventHubNamespace616\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace616\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700\",\r\n \"name\": \"eventHubNamespace5700\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace5700\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -229,27 +229,91 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:55:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4def4b78-7aeb-4561-a8f5-000f19221373_M3CH3_M3CH3" + "ae87922b-aba6-437d-8c5b-6bee3b97f9aa_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1d5b218a-d542-47e8-ba73-a7b19b99259a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T005544Z:1d5b218a-d542-47e8-ba73-a7b19b99259a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "771" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700\",\r\n \"name\": \"eventHubNamespace5700\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace5700\",\r\n \"status\": \"Created\",\r\n \"createdAt\": \"2020-02-07T00:55:13.51Z\",\r\n \"serviceBusEndpoint\": \"https://eventHubNamespace5700.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"scaleUnit\": \"DM2-503\",\r\n \"dataCenter\": \"DM2\",\r\n \"updatedAt\": \"2020-02-07T00:55:13.51Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:56:13 GMT" + ], + "Pragma": [ + "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ + "061d1204-fd91-497c-ad68-8bdbe6445cb0_M2SN1_M2SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "98d245f8-c36b-4527-bcf8-0dde573864b6" + "72fc218e-cce4-43ba-b153-464d352f3407" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021515Z:98d245f8-c36b-4527-bcf8-0dde573864b6" + "WESTUS:20200207T005614Z:72fc218e-cce4-43ba-b153-464d352f3407" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -257,11 +321,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:15 GMT" - ], "Content-Length": [ - "769" + "772" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,25 +331,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616\",\r\n \"name\": \"eventHubNamespace616\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace616\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-04-11T02:14:44.95Z\",\r\n \"serviceBusEndpoint\": \"https://eventHubNamespace616.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"scaleUnit\": \"DM2-513\",\r\n \"dataCenter\": \"DM2\",\r\n \"updatedAt\": \"2019-04-11T02:15:13.957Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700\",\r\n \"name\": \"eventHubNamespace5700\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace5700\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-02-07T00:55:13.51Z\",\r\n \"serviceBusEndpoint\": \"https://eventHubNamespace5700.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"scaleUnit\": \"DM2-503\",\r\n \"dataCenter\": \"DM2\",\r\n \"updatedAt\": \"2020-02-07T00:56:02.79Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvZXZlbnRodWJzL2V2ZW50aHVibmFtZTYzNTA/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/eventhubs/eventhubname3483?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwL2V2ZW50aHVicy9ldmVudGh1Ym5hbWUzNDgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"CentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d9db88e8-2955-421b-a57e-31f0ad674e6e" + "b5cabc66-6da7-4bcc-bdf8-e971adbad932" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ], "Content-Type": [ @@ -302,27 +363,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "5d810c07-7980-4aa4-a2df-22de1ba02150_M3CH3_M3CH3" + "836a9ecf-b0ad-4aad-8617-b29fcecd89d6_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "6d198d06-fdd8-4539-b930-3cf3ff22c913" + "01a27906-7ac8-42a9-ae2d-8997601a0f94" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021523Z:6d198d06-fdd8-4539-b930-3cf3ff22c913" + "WESTUS:20200207T005622Z:01a27906-7ac8-42a9-ae2d-8997601a0f94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -330,9 +394,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:23 GMT" - ], "Content-Length": [ "501" ], @@ -343,25 +404,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350\",\r\n \"name\": \"eventhubname6350\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"eventhubname6350\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-04-11T02:15:17.357Z\",\r\n \"updatedAt\": \"2019-04-11T02:15:17.713Z\",\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/eventhubs/eventhubname3483\",\r\n \"name\": \"eventhubname3483\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"eventhubname3483\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-02-07T00:56:16.18Z\",\r\n \"updatedAt\": \"2020-02-07T00:56:16.937Z\",\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350/authorizationRules/sendPolicy9946?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvZXZlbnRodWJzL2V2ZW50aHVibmFtZTYzNTAvYXV0aG9yaXphdGlvblJ1bGVzL3NlbmRQb2xpY3k5OTQ2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/eventhubs/eventhubname3483/authorizationRules/sendPolicy4113?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwL2V2ZW50aHVicy9ldmVudGh1Ym5hbWUzNDgzL2F1dGhvcml6YXRpb25SdWxlcy9zZW5kUG9saWN5NDExMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "73922027-73b7-4cae-a3a7-a2dae0dbb714" + "ef47438f-4a3b-4abc-97fd-fde048059e2c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ], "Content-Type": [ @@ -375,27 +436,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:27 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4a44ba70-5966-4626-85d3-2b4455aed680_M3CH3_M3CH3" + "4bea4b50-1d64-4b52-aa7f-a159d7d32a9a_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "1198" ], "x-ms-correlation-request-id": [ - "f88a0125-96e7-48d9-b8c8-1a039284c3cf" + "bbc135f2-a165-4134-8640-36bcaf725e6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021529Z:f88a0125-96e7-48d9-b8c8-1a039284c3cf" + "WESTUS:20200207T005627Z:bbc135f2-a165-4134-8640-36bcaf725e6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,11 +467,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:28 GMT" - ], "Content-Length": [ - "359" + "360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -416,25 +477,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350/authorizationRules/sendPolicy9946\",\r\n \"name\": \"sendPolicy9946\",\r\n \"type\": \"Microsoft.EventHub/AuthorizationRules\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/eventhubs/eventhubname3483/authorizationRules/sendPolicy4113\",\r\n \"name\": \"sendPolicy4113\",\r\n \"type\": \"Microsoft.EventHub/AuthorizationRules\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350/authorizationRules/sendPolicy9946/ListKeys?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvZXZlbnRodWJzL2V2ZW50aHVibmFtZTYzNTAvYXV0aG9yaXphdGlvblJ1bGVzL3NlbmRQb2xpY3k5OTQ2L0xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/eventhubs/eventhubname3483/authorizationRules/sendPolicy4113/ListKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwL2V2ZW50aHVicy9ldmVudGh1Ym5hbWUzNDgzL2F1dGhvcml6YXRpb25SdWxlcy9zZW5kUG9saWN5NDExMy9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5a84fc9-615b-41cf-aaf4-03b42cbd3187" + "ee0bf911-e119-4181-91af-35001dd2b3f8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -442,27 +503,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:27 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1d9e4c4b-b2a6-425a-bc43-5e0712a12090_M6CH3_M6CH3" + "14301c8a-dd5d-4eed-90ac-fa33b9629a38_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "dad74bfc-4ce5-4686-a38c-8851dadcaae9" + "4c173108-f850-41e9-ade1-b3892add4bc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021529Z:dad74bfc-4ce5-4686-a38c-8851dadcaae9" + "WESTUS:20200207T005628Z:4c173108-f850-41e9-ade1-b3892add4bc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -470,11 +534,8 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:29 GMT" - ], "Content-Length": [ - "574" + "576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -483,70 +544,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhubnamespace616.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9946;SharedAccessKey=UgkjkMbhSpQPtIq+MAL9I70ih5hoJuZtzzqezDXi/TU=;EntityPath=eventhubname6350\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhubnamespace616.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9946;SharedAccessKey=K5lpWjggQufIUwo3j6Uf/d3fDK98ObHN9xx1kxCsRL4=;EntityPath=eventhubname6350\",\r\n \"primaryKey\": \"UgkjkMbhSpQPtIq+MAL9I70ih5hoJuZtzzqezDXi/TU=\",\r\n \"secondaryKey\": \"K5lpWjggQufIUwo3j6Uf/d3fDK98ObHN9xx1kxCsRL4=\",\r\n \"keyName\": \"sendPolicy9946\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhubnamespace5700.servicebus.windows.net/;SharedAccessKeyName=sendPolicy4113;SharedAccessKey=nbm7sw8mRI5wpCOsCAu4MLgF8rrni1QblfdvHAQ0Kd4=;EntityPath=eventhubname3483\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhubnamespace5700.servicebus.windows.net/;SharedAccessKeyName=sendPolicy4113;SharedAccessKey=Ydrr1McsjO4ypORIidq0xFuKWH/MVltSOiTp0c0DKgk=;EntityPath=eventhubname3483\",\r\n \"primaryKey\": \"nbm7sw8mRI5wpCOsCAu4MLgF8rrni1QblfdvHAQ0Kd4=\",\r\n \"secondaryKey\": \"Ydrr1McsjO4ypORIidq0xFuKWH/MVltSOiTp0c0DKgk=\",\r\n \"keyName\": \"sendPolicy4113\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvbmV3bG9nZ2VyNTMyNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription1135\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname6350\",\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace616.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9946;SharedAccessKey=UgkjkMbhSpQPtIq+MAL9I70ih5hoJuZtzzqezDXi/TU=;EntityPath=eventhubname6350\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription8064\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname3483\",\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace5700.servicebus.windows.net/;SharedAccessKeyName=sendPolicy4113;SharedAccessKey=nbm7sw8mRI5wpCOsCAu4MLgF8rrni1QblfdvHAQ0Kd4=;EntityPath=eventhubname3483\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1ad0a1b-574c-4535-a825-27a9378ab98f" + "82e0c9e9-c8db-4202-928d-fee8624dc7d7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "388" + "389" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:31 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAchw=\"" + "\"AAAAAAAACYo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f477126b-6d0a-497e-8d3a-4fb4524b7c1b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "db9ec648-c30c-4dfb-a116-317ecec736df" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "1a590dc9-03d7-46a2-a522-e5244d961ffc" + "da6b0da4-6180-4fb6-aad2-e18a6bccc223" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021530Z:1a590dc9-03d7-46a2-a522-e5244d961ffc" + "WESTUS:20200207T005632Z:da6b0da4-6180-4fb6-aad2-e18a6bccc223" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:29 GMT" - ], "Content-Length": [ - "565" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -555,61 +616,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7665\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription1135\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname6350\",\r\n \"connectionString\": \"{{Logger-Credentials-5caea342b597440f487b0e48}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger5326\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription8064\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname3483\",\r\n \"connectionString\": \"{{Logger-Credentials-5e3cb5c02393691028e5c61c}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d396e419-62d4-4c25-86c1-0024dcb8af99" + "d6007852-3a93-44df-8cd0-589e5a1f6234" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d44f3dc1-3c11-4017-b60f-b28126ade9ff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7904414d-2d7d-41e1-a7b9-f4867f15c3ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "b1fed936-54df-439c-9606-aa65cb431dd1" + "51641980-28d5-4c3e-bf9e-7f00f9abdc3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021530Z:b1fed936-54df-439c-9606-aa65cb431dd1" + "WESTUS:20200207T005632Z:51641980-28d5-4c3e-bf9e-7f00f9abdc3d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:30 GMT" - ], "Content-Length": [ - "650" + "673" ], "Content-Type": [ "application/json; charset=utf-8" @@ -618,62 +679,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7665\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription1135\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname6350\",\r\n \"connectionString\": \"{{Logger-Credentials-5caea342b597440f487b0e48}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger5326\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription8064\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname3483\",\r\n \"connectionString\": \"{{Logger-Credentials-5e3cb5c02393691028e5c61c}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvbmV3bG9nZ2VyNTMyNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4518bfb-0bf9-47e4-bc74-a42f01f889ef" + "5db3b3e5-92b8-410a-8d28-8585bdb7c8d4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:31 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAchw=\"" + "\"AAAAAAAACYo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "909b5b32-f028-40fc-9c2a-e98d48df171e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6c8f5eb2-86f3-4bb7-8af5-66ce50c7b41b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "ae84d309-74a0-422b-980e-aca308c2d237" + "98c34050-5d67-48d4-8105-eb2a0f1c3118" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021531Z:ae84d309-74a0-422b-980e-aca308c2d237" + "WESTUS:20200207T005632Z:98c34050-5d67-48d4-8105-eb2a0f1c3118" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:30 GMT" - ], "Content-Length": [ "0" ], @@ -685,58 +746,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvbmV3bG9nZ2VyNTMyNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7c9f62d-3a8c-48d7-aa08-93fe57e00b9d" + "14234b7e-2a53-40e8-9720-fba14f4020bd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:34 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAch4=\"" + "\"AAAAAAAACYw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5463b056-4b63-497c-baaf-93b33ff36e5f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ec9a0895-edb8-434c-b237-ae8d0cddaed7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "b293d121-62b9-47c0-b158-583c76ed144c" + "4551114e-8f7b-4b81-a961-7a19abcbe75e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021531Z:b293d121-62b9-47c0-b158-583c76ed144c" + "WESTUS:20200207T005634Z:4551114e-8f7b-4b81-a961-7a19abcbe75e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:30 GMT" - ], "Content-Length": [ "0" ], @@ -748,25 +809,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvbmV3bG9nZ2VyNTMyNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription7910\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription8275\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b8cffa44-d456-44d5-b652-ec46a5f76b82" + "e7a253a0-9887-49a5-9475-d7911a102409" ], "If-Match": [ - "\"AAAAAAAAchw=\"" + "\"AAAAAAAACYo=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -779,33 +840,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:33 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56031596-8f97-4958-a7fa-9607ed06fbf0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "76673cee-a1dd-4173-a4a8-2f9f654d4882" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "809018e8-8cca-42ee-85b2-feffafc4dc7d" + "746a421b-96e6-4961-bd02-831c8016b9b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021531Z:809018e8-8cca-42ee-85b2-feffafc4dc7d" + "WESTUS:20200207T005633Z:746a421b-96e6-4961-bd02-831c8016b9b5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:30 GMT" - ], "Expires": [ "-1" ] @@ -814,60 +875,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvbmV3bG9nZ2VyNTMyNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a575dbe-578f-4031-9d07-67bec06a8d6f" + "ab64073b-bea7-4f9b-b280-d70e422c5479" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:33 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAch4=\"" + "\"AAAAAAAACYw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4760e06d-6be9-4c5a-a8ae-8d96f82c776e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "616828cf-5753-4dc4-95ff-170353c4c209" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "1b31eaab-0831-4721-90b5-6dff7f091517" + "5896c91d-acef-41b6-8924-c3c7933aa4cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021531Z:1b31eaab-0831-4721-90b5-6dff7f091517" + "WESTUS:20200207T005633Z:5896c91d-acef-41b6-8924-c3c7933aa4cc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:30 GMT" - ], "Content-Length": [ - "563" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,59 +937,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7665\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription7910\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname6350\",\r\n \"connectionString\": \"{{Logger-Credentials-5caea342b597440f487b0e48}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger5326\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription8275\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname3483\",\r\n \"connectionString\": \"{{Logger-Credentials-5e3cb5c02393691028e5c61c}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvbmV3bG9nZ2VyNTMyNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3781e649-dbae-4606-b781-2cb327dcb9b5" + "f6291ae0-6cde-4c85-9e64-fdb1ee951653" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "928d189b-3752-42e2-bb8e-0ff9eef88d37" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "899597c4-1ce4-4bc8-9db5-b80d984eb1e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-correlation-request-id": [ - "fa8d2f99-fb47-4206-ac45-e6cd37f0e198" + "b39b306a-1c43-4543-8501-6532ec712882" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021532Z:fa8d2f99-fb47-4206-ac45-e6cd37f0e198" + "WESTUS:20200207T005634Z:b39b306a-1c43-4543-8501-6532ec712882" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:31 GMT" - ], "Content-Length": [ "82" ], @@ -943,121 +1004,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvbmV3bG9nZ2VyNTMyNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db2b92e0-a9d7-4a46-8b24-0405819144a4" + "eb3dfa02-44cc-4903-a94e-2a881062fb97" ], "If-Match": [ - "\"AAAAAAAAch4=\"" + "\"AAAAAAAACYw=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89812b85-22bf-4be3-8851-55ac815ae7c2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b8030790-2fb3-4597-ad19-00a08815971a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "06e216fc-33ca-4f98-a609-a4da5dbba086" + "0ef684b1-21d9-4a1e-bf82-fe8152f4eab6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021532Z:06e216fc-33ca-4f98-a609-a4da5dbba086" + "WESTUS:20200207T005634Z:0ef684b1-21d9-4a1e-bf82-fe8152f4eab6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:31 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/loggers/newlogger5326?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2xvZ2dlcnMvbmV3bG9nZ2VyNTMyNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b33be62-b9bb-4302-a536-d36a879b4981" + "d9908b5b-288e-447b-b124-d4d2f59a38b9" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31ab4622-61ff-4e3a-b424-82795417ebd4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "863f247f-4ef7-414f-b6be-5177dd9e4e5e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "c6b0c3aa-f054-4397-9886-c58fcfca5dad" + "cf2dacd4-9bca-4ffc-873e-363fb98db715" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021532Z:c6b0c3aa-f054-4397-9886-c58fcfca5dad" + "WESTUS:20200207T005634Z:cf2dacd4-9bca-4ffc-873e-363fb98db715" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:31 GMT" - ], "Expires": [ "-1" ] @@ -1066,57 +1127,57 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62afcf0e-5f80-40a7-91bc-a3944f7d46c0" + "f4cec80d-a03b-4851-94ef-9b6712087f17" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2e6fd84-7abd-4699-8fe2-775e50f50514" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c3c0a5a3-1a0a-4b4a-b920-9de1d2763601" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-correlation-request-id": [ - "9c07cc2d-07ce-40fa-8b52-c5e832d10f49" + "5d4aca34-c48f-475e-9edf-f3c0a8e6dca5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021532Z:9c07cc2d-07ce-40fa-8b52-c5e832d10f49" + "WESTUS:20200207T005634Z:5d4aca34-c48f-475e-9edf-f3c0a8e6dca5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:31 GMT" - ], "Content-Length": [ - "693" + "717" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1125,88 +1186,88 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea342b597440f487b0e47\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5caea342b597440f487b0e47\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5caea342b597440f487b0e48\",\r\n \"value\": \"Endpoint=sb://eventhubnamespace616.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9946;SharedAccessKey=UgkjkMbhSpQPtIq+MAL9I70ih5hoJuZtzzqezDXi/TU=;EntityPath=eventhubname6350\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/5e3cb5c02393691028e5c61b\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5e3cb5c02393691028e5c61b\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5e3cb5c02393691028e5c61c\",\r\n \"value\": \"Endpoint=sb://eventhubnamespace5700.servicebus.windows.net/;SharedAccessKeyName=sendPolicy4113;SharedAccessKey=nbm7sw8mRI5wpCOsCAu4MLgF8rrni1QblfdvHAQ0Kd4=;EntityPath=eventhubname3483\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea342b597440f487b0e47?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWVhMzQyYjU5NzQ0MGY0ODdiMGU0Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/5e3cb5c02393691028e5c61b?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvNWUzY2I1YzAyMzkzNjkxMDI4ZTVjNjFiP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fe7af64-1698-4c2a-8f29-98fee85d2e61" + "ebe6e326-9ef5-414f-88e7-640c564240f7" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e911f1bd-97c4-4b27-b606-00e658c83b25" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f70fda59-8a2b-42c8-a5c8-9e9f252e6c35" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "8195d33a-7922-47d6-a4a7-5f8bbc12710c" + "715d7a29-b1ff-424c-a854-ea38f3699507" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021532Z:8195d33a-7922-47d6-a4a7-5f8bbc12710c" + "WESTUS:20200207T005634Z:715d7a29-b1ff-424c-a854-ea38f3699507" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:32 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvZXZlbnRodWJzL2V2ZW50aHVibmFtZTYzNTA/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/eventhubs/eventhubname3483?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwL2V2ZW50aHVicy9ldmVudGh1Ym5hbWUzNDgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bd02966-ad8e-4433-8e45-e4e900659fa9" + "96c75d7a-15b0-479b-8e8f-b2ab1bf450f5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -1214,63 +1275,63 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:35 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-request-id": [ - "c7e56f5a-0e6c-4869-9c71-128d7dec2300" + "549929e1-c50c-4088-b894-a5cc6851fdfd" ], "x-ms-correlation-request-id": [ - "c7e56f5a-0e6c-4869-9c71-128d7dec2300" + "549929e1-c50c-4088-b894-a5cc6851fdfd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021534Z:c7e56f5a-0e6c-4869-9c71-128d7dec2300" + "WESTUS:20200207T005636Z:549929e1-c50c-4088-b894-a5cc6851fdfd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:33 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b1a4797-6bdc-4c19-8367-3f55e9762cd4" + "6021163e-a053-4197-aaeb-1e43f9ac0068" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -1278,30 +1339,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:56:35 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/operationresults/eventHubNamespace616?api-version=2015-08-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/operationresults/eventHubNamespace5700?api-version=2015-08-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "904c709b-54a2-461a-90ce-8a314a197fbc_M6CH3_M6CH3" + "903fabb5-ef95-45f5-bc91-22cd772121e1_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "eaa4e6a3-b5c9-4915-9bf9-6792336f6928" + "d5f769ca-fb02-4cd5-a42a-34d5b5be0a0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021535Z:eaa4e6a3-b5c9-4915-9bf9-6792336f6928" + "WESTUS:20200207T005636Z:d5f769ca-fb02-4cd5-a42a-34d5b5be0a0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1309,29 +1373,26 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:15:34 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/operationresults/eventHubNamespace616?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvb3BlcmF0aW9ucmVzdWx0cy9ldmVudEh1Yk5hbWVzcGFjZTYxNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/operationresults/eventHubNamespace5700?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwL29wZXJhdGlvbnJlc3VsdHMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -1339,27 +1400,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "046b1c67-82ac-4f63-8c45-6b44dc912d36_M0CH3_M0CH3" + "ab70b719-3548-4dbe-bf7c-b7772b85c344_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "428816a7-c265-4d62-8a16-c89e1f339242" + "c64ec10b-aa41-49b9-a366-677a3664bf3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021605Z:428816a7-c265-4d62-8a16-c89e1f339242" + "WESTUS:20200207T005707Z:c64ec10b-aa41-49b9-a366-677a3664bf3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1367,29 +1431,26 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:04 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/operationresults/eventHubNamespace616?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvb3BlcmF0aW9ucmVzdWx0cy9ldmVudEh1Yk5hbWVzcGFjZTYxNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5700/operationresults/eventHubNamespace5700?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwL29wZXJhdGlvbnJlc3VsdHMvZXZlbnRIdWJOYW1lc3BhY2U1NzAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" ] }, @@ -1397,27 +1458,30 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "02a55234-9f07-4045-b139-679970d282ec_M6CH3_M6CH3" + "213fe7c8-9ddd-47e3-becd-0d30114a9697_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "f2f38012-fc62-484b-b01e-58c2c8ded4df" + "499349f2-19bc-4570-a9a8-319c192f5104" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021605Z:f2f38012-fc62-484b-b01e-58c2c8ded4df" + "WESTUS:20200207T005707Z:499349f2-19bc-4570-a9a8-319c192f5104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1425,14 +1489,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:04 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -1441,12 +1502,12 @@ ], "Names": { "CreateListUpdateDeleteEventHub": [ - "newlogger7665", - "eventHubNamespace616", - "eventhubname6350", - "sendPolicy9946", - "newloggerDescription1135", - "patchedDescription7910" + "newlogger5326", + "eventHubNamespace5700", + "eventhubname3483", + "sendPolicy4113", + "newloggerDescription8064", + "patchedDescription8275" ] }, "Variables": { @@ -1454,7 +1515,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/NotificationTests/UpdateDeleteRecipientEmail.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/NotificationTests/UpdateDeleteRecipientEmail.json index 14da2a1c09a6..22e268883155 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/NotificationTests/UpdateDeleteRecipientEmail.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/NotificationTests/UpdateDeleteRecipientEmail.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "373f6fc0-fe4a-4df3-b9f4-2e1418e94141" + "69eff8cd-aeef-4dbd-babb-a328fb3e62f8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d26ed5ea-298b-4d12-8b1e-706fb74c1f23", - "8e0180b6-ebef-4f7b-ae8f-4fb04994feb6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bea2516c-0223-432a-8bd1-823e065740c7", + "74bbe333-54db-475f-94d1-6e4a36a5f1e0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "fb096aae-2f9e-46b0-94e2-53202ddf179e" + "4c8407a9-70b0-4284-af06-fcaa983a22d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020501Z:fb096aae-2f9e-46b0-94e2-53202ddf179e" + "WESTUS:20200207T010608Z:4c8407a9-70b0-4284-af06-fcaa983a22d9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:00 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2614f871-6a26-4a48-b224-a7e9a400f4d7" + "fde0e07c-1ed2-4488-bd8d-86fa474332a8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:08 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3df3117e-7475-4bce-a1c4-c1b727825242" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a63bd36a-9b72-40f4-92fc-4e682d7cccf4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "540aca2d-5843-41de-86f7-d97044950111" + "50557ab9-2bef-4787-920c-3d7dd8eb2522" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020501Z:540aca2d-5843-41de-86f7-d97044950111" + "WESTUS:20200207T010609Z:50557ab9-2bef-4787-920c-3d7dd8eb2522" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:00 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14c268f2-90b0-4585-ac77-05d4ec65ea4a" + "9b3656cc-0195-4ff6-a94f-4ce3ce8a7d4b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4a835fc-ed4e-4935-b338-213661475ec1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "25dbaf0a-4042-4941-abe6-cda24d6c98f3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-correlation-request-id": [ - "b04e124b-3bfa-46e5-a0f7-3cc929a14c79" + "7939dacb-071d-4dc1-a1a6-1d82673f6d6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020501Z:b04e124b-3bfa-46e5-a0f7-3cc929a14c79" + "WESTUS:20200207T010609Z:7939dacb-071d-4dc1-a1a6-1d82673f6d6b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:00 GMT" - ], "Content-Length": [ - "4550" + "4621" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/PurchasePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"PurchasePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New subscriptions\",\r\n \"description\": \"The following email recipients and users will receive email notifications about new API product subscriptions.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/NewApplicationNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewApplicationNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Application gallery requests\",\r\n \"description\": \"The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/BCC\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"BCC\",\r\n \"properties\": {\r\n \"title\": \"BCC\",\r\n \"description\": \"The following recipients will receive blind carbon copies of all emails sent to developers.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/NewIssuePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewIssuePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New issue or comment\",\r\n \"description\": \"The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/AccountClosedPublisher\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"AccountClosedPublisher\",\r\n \"properties\": {\r\n \"title\": \"Close account message\",\r\n \"description\": \"The following email recipients and users will receive email notifications when developer closes his account\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Approaching subscription quota limit\",\r\n \"description\": \"The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/PurchasePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"PurchasePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New subscriptions\",\r\n \"description\": \"The following email recipients and users will receive email notifications about new API product subscriptions.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/NewApplicationNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewApplicationNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Application gallery requests\",\r\n \"description\": \"The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/BCC\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"BCC\",\r\n \"properties\": {\r\n \"title\": \"BCC\",\r\n \"description\": \"The following recipients will receive blind carbon copies of all emails sent to developers.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/NewIssuePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewIssuePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New issue or comment\",\r\n \"description\": \"The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/AccountClosedPublisher\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"AccountClosedPublisher\",\r\n \"properties\": {\r\n \"title\": \"Close account message\",\r\n \"description\": \"The following email recipients and users will receive email notifications when developer closes his account\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Approaching subscription quota limit\",\r\n \"description\": \"The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 7\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2UvcmVjaXBpZW50RW1haWxzL2NvbnRvc28lNDBtaWNyb3NvZnQuY29tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e31553ae-3aba-4662-a0e5-be0ddafb3eb5" + "e6853719-55ab-43e6-a7fc-b06d6550c8c9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a52a23e0-ba9a-41af-ab13-cd258e08765c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6af64ddc-d647-485f-a67b-85a3dd72525f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "28fd366f-8bc7-464f-9164-60aa7a4a4058" + "538289a3-f3fa-4649-a2d2-e5e59c1a276f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020502Z:28fd366f-8bc7-464f-9164-60aa7a4a4058" + "WESTUS:20200207T010609Z:538289a3-f3fa-4649-a2d2-e5e59c1a276f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:01 GMT" - ], "Content-Length": [ - "424" + "432" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,59 +262,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@microsoft.com\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications/recipientEmails\",\r\n \"name\": \"contoso@microsoft.com\",\r\n \"properties\": {\r\n \"email\": \"contoso@microsoft.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@microsoft.com\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications/recipientEmails\",\r\n \"name\": \"contoso@microsoft.com\",\r\n \"properties\": {\r\n \"email\": \"contoso@microsoft.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2UvcmVjaXBpZW50RW1haWxzL2NvbnRvc28lNDBtaWNyb3NvZnQuY29tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ec5b7cc-f798-47c9-ba8c-0ca82f58d443" + "34f56431-b2bd-40f6-9264-26556d3404e9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6cef2d2d-34e1-482f-b097-43d65cd4c6d0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b6ba69c7-1099-493c-bb42-6805eb23c73f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-correlation-request-id": [ - "24bd656c-f564-48ad-88dc-76a17890b428" + "3c9830eb-8291-4541-9350-2dda4784fc0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020502Z:24bd656c-f564-48ad-88dc-76a17890b428" + "WESTUS:20200207T010609Z:3c9830eb-8291-4541-9350-2dda4784fc0e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:01 GMT" - ], "Content-Length": [ "0" ], @@ -326,55 +326,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2UvcmVjaXBpZW50RW1haWxzL2NvbnRvc28lNDBtaWNyb3NvZnQuY29tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0afa73b8-eff6-4e38-abaa-26f1d5eac65a" + "619ab052-90c0-49d9-a1d1-8877f222e462" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56792a67-719b-4203-a440-274cbb26d134" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "085b586c-d003-4f81-b984-718db7c2f9e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11988" ], "x-ms-correlation-request-id": [ - "c0b559ee-92f2-46ee-86b4-3f43a39a0317" + "74a76092-c082-434e-b15e-0346dfe18a23" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020503Z:c0b559ee-92f2-46ee-86b4-3f43a39a0317" + "WESTUS:20200207T010610Z:74a76092-c082-434e-b15e-0346dfe18a23" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:02 GMT" - ], "Content-Length": [ "0" ], @@ -386,57 +386,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "854a4444-3e2e-4c33-9b19-87faf68b0b06" + "429e76f4-92f9-4cd3-89b5-48a569efc1f7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8628313-2c9e-4fc6-8702-824390c9c133" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3135fc58-642c-4c0e-b27b-a0f42fddeacd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11989" ], "x-ms-correlation-request-id": [ - "12b28f56-8806-4cad-8326-d1d690089821" + "20dc95e6-0d38-4bd4-aa51-d9c74171f649" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020502Z:12b28f56-8806-4cad-8326-d1d690089821" + "WESTUS:20200207T010610Z:20dc95e6-0d38-4bd4-aa51-d9c74171f649" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:01 GMT" - ], "Content-Length": [ - "839" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -445,64 +445,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [\r\n \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/recipientEmails/contoso@microsoft.com\"\r\n ],\r\n \"users\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [\r\n \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/recipientEmails/contoso@microsoft.com\"\r\n ],\r\n \"users\": []\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2UvcmVjaXBpZW50RW1haWxzL2NvbnRvc28lNDBtaWNyb3NvZnQuY29tP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a28ed3c8-5814-47cb-a38d-a66765a19161" + "9dba89fc-2dce-42c8-86dd-544cb6a4d948" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a7213a4-ad95-4f03-a75f-92eca6128409" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "aa676b15-b1c2-4029-aa4d-6a6db25ac148" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "6da65222-794a-4716-87ec-e93244fd2168" + "5016dc2e-47ba-4d2c-8386-5a99c4709362" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020502Z:6da65222-794a-4716-87ec-e93244fd2168" + "WESTUS:20200207T010610Z:5016dc2e-47ba-4d2c-8386-5a99c4709362" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:02 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -515,7 +515,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/NotificationTests/UpdateDeleteRecipientUser.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/NotificationTests/UpdateDeleteRecipientUser.json index a6310f2a5079..9bb1bfb4f41a 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/NotificationTests/UpdateDeleteRecipientUser.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/NotificationTests/UpdateDeleteRecipientUser.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b8bd598d-3cb0-4711-a55b-5b739ec26abf" + "a8c9a0d4-b7c2-433d-8e1c-1a547aa53ab1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:05 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0611beb-b910-48a2-beb5-e350da23d7a4", - "eff47b92-ba80-4799-90ae-5f4ecbc0220c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "99953c1e-f91f-4a59-98bb-12976cdbc5de", + "b4e0cea1-0e72-4e02-8bd2-c99e8c455a16" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "a921ba24-a7db-49d3-b45a-f00b977626fc" + "7b27dd49-dffd-43b8-9d5b-49735d86eaa5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020457Z:a921ba24-a7db-49d3-b45a-f00b977626fc" + "WESTUS:20200207T010605Z:7b27dd49-dffd-43b8-9d5b-49735d86eaa5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:57 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ad3836b-c38f-46bc-aaca-7e4870639c05" + "e793005a-79c2-44ae-bc15-3d2d5d9e131d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:05 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89ab9207-9894-4153-94d7-45678f877dd9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d1c1c119-2f2e-4121-b14f-f9e5fbacc3f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "73b08947-6084-40dd-b79f-fce5cae17e5e" + "be0e81e4-1fb3-45c3-b412-04feabc4d0c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020458Z:73b08947-6084-40dd-b79f-fce5cae17e5e" + "WESTUS:20200207T010605Z:be0e81e4-1fb3-45c3-b412-04feabc4d0c3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:57 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c7a0e59-d3d6-4b5c-a777-4c484ec0d8bf" + "5ace3e84-d40b-417f-8a28-e27fb41730ec" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fed2f7dc-7346-4f6d-aef7-43cdf9a636b8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5ae91ab9-0227-4458-8b22-698dc7fb2070" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11997" ], "x-ms-correlation-request-id": [ - "70e850d4-10d4-4305-b575-9c194c7120ce" + "5121dd9a-f166-498a-adb1-19c0a2da5f1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020458Z:70e850d4-10d4-4305-b575-9c194c7120ce" + "WESTUS:20200207T010606Z:5121dd9a-f166-498a-adb1-19c0a2da5f1e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:58 GMT" - ], "Content-Length": [ - "4550" + "4621" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/PurchasePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"PurchasePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New subscriptions\",\r\n \"description\": \"The following email recipients and users will receive email notifications about new API product subscriptions.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/NewApplicationNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewApplicationNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Application gallery requests\",\r\n \"description\": \"The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/BCC\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"BCC\",\r\n \"properties\": {\r\n \"title\": \"BCC\",\r\n \"description\": \"The following recipients will receive blind carbon copies of all emails sent to developers.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/NewIssuePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewIssuePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New issue or comment\",\r\n \"description\": \"The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/AccountClosedPublisher\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"AccountClosedPublisher\",\r\n \"properties\": {\r\n \"title\": \"Close account message\",\r\n \"description\": \"The following email recipients and users will receive email notifications when developer closes his account\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Approaching subscription quota limit\",\r\n \"description\": \"The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/PurchasePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"PurchasePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New subscriptions\",\r\n \"description\": \"The following email recipients and users will receive email notifications about new API product subscriptions.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/NewApplicationNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewApplicationNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Application gallery requests\",\r\n \"description\": \"The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/BCC\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"BCC\",\r\n \"properties\": {\r\n \"title\": \"BCC\",\r\n \"description\": \"The following recipients will receive blind carbon copies of all emails sent to developers.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/NewIssuePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewIssuePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New issue or comment\",\r\n \"description\": \"The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/AccountClosedPublisher\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"AccountClosedPublisher\",\r\n \"properties\": {\r\n \"title\": \"Close account message\",\r\n \"description\": \"The following email recipients and users will receive email notifications when developer closes his account\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Approaching subscription quota limit\",\r\n \"description\": \"The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 7\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ca3a495-7ac4-4cd3-8f8c-150950a7cd44" + "3e9e261c-96b8-4d3b-a2c5-e019aa1a26d3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "acbb7213-8687-49d8-bd8f-89355701bc0e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "893d4dee-4c0e-4144-89fe-35ff52cb9107" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11996" ], "x-ms-correlation-request-id": [ - "da9b7986-c7d4-4f87-b8f4-0c2169084265" + "dafe6879-20b2-4c91-9ad3-96acf7c1eec3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020458Z:da9b7986-c7d4-4f87-b8f4-0c2169084265" + "WESTUS:20200207T010606Z:dafe6879-20b2-4c91-9ad3-96acf7c1eec3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:58 GMT" - ], "Content-Length": [ - "667" + "690" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:19:58.283Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2UvcmVjaXBpZW50VXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc9452a3-e1de-4e29-b308-17c74752a2b4" + "23d3a959-9ed5-4149-90db-103285573d01" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6141c2b7-468e-4a44-a79e-2a2b3abf5f66" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5d3a3e16-62bf-4ceb-a825-13a51053b59b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "dbed04e7-7642-4b15-9222-140775f5358a" + "f3815e92-7bd8-4ae7-9109-2ce307d817e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020459Z:dbed04e7-7642-4b15-9222-140775f5358a" + "WESTUS:20200207T010606Z:f3815e92-7bd8-4ae7-9109-2ce307d817e1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:58 GMT" - ], "Content-Length": [ - "515" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,59 +325,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications/recipientUsers\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientUsers/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications/recipientUsers\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2UvcmVjaXBpZW50VXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbb4efc3-ab43-4ceb-a0e5-ff75f4328ae3" + "d5f9ef61-d1ad-4e97-ae67-dfde94507039" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "088562a2-7d14-489e-8778-d85f739a994c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "edd366cd-8aec-4f3b-b7aa-8791087106ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11995" ], "x-ms-correlation-request-id": [ - "7e40447c-0a8d-4050-a6f0-ab6d5515c469" + "da993723-067c-454a-8c9a-4b387c3f0aa5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020459Z:7e40447c-0a8d-4050-a6f0-ab6d5515c469" + "WESTUS:20200207T010607Z:da993723-067c-454a-8c9a-4b387c3f0aa5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:59 GMT" - ], "Content-Length": [ "0" ], @@ -389,55 +389,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2UvcmVjaXBpZW50VXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54478400-bd1f-46e6-acde-27ce75666be7" + "bcfd539a-dae1-4781-88a8-b6a823e81427" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39813460-5144-4e75-a7c8-4280fe150bb9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "61343412-3869-4029-b867-61454ef5aa96" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11993" ], "x-ms-correlation-request-id": [ - "eaf3aabd-4cf8-48ab-90c2-44e9b2d1bbe2" + "49fd6ac8-df96-4e09-bfcf-10d3a7954181" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020459Z:eaf3aabd-4cf8-48ab-90c2-44e9b2d1bbe2" + "WESTUS:20200207T010607Z:49fd6ac8-df96-4e09-bfcf-10d3a7954181" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:59 GMT" - ], "Content-Length": [ "0" ], @@ -449,57 +449,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c85eb1f-c491-4676-ba4a-6b0bff93ce02" + "e8aac24a-5d89-4330-bbf1-2caa92511bbd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "342de7c2-8cec-4f0a-9650-7e387ce20058" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4c894b47-1838-4fa5-9746-45e01bfb4e02" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11994" ], "x-ms-correlation-request-id": [ - "890de3e9-ce8a-40fb-817f-aae8aea3f3b1" + "6b1183b3-2f3b-4e88-adcd-dcbbe1abcc94" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020459Z:890de3e9-ce8a-40fb-817f-aae8aea3f3b1" + "WESTUS:20200207T010607Z:6b1183b3-2f3b-4e88-adcd-dcbbe1abcc94" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:59 GMT" - ], "Content-Length": [ - "809" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -508,64 +508,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": [\r\n \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": [\r\n \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\"\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL25vdGlmaWNhdGlvbnMvUmVxdWVzdFB1Ymxpc2hlck5vdGlmaWNhdGlvbk1lc3NhZ2UvcmVjaXBpZW50VXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "005bea27-edfe-49ef-8b18-2d1152f86df6" + "b2cfa64e-dde4-4897-9542-db7554a6ea94" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4722bb21-89a6-4399-8822-487712c459b7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0479a7b1-cb4d-4a06-ade3-6627a26d9b21" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "252f6866-aa84-47dc-8c0d-b32d72d33c4a" + "b771fa8e-1ddf-4060-85ae-195cb9ad17be" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020459Z:252f6866-aa84-47dc-8c0d-b32d72d33c4a" + "WESTUS:20200207T010607Z:b771fa8e-1ddf-4060-85ae-195cb9ad17be" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:59 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -578,7 +578,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } 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 60a167aa28ce..d018961bf207 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f792cbad-394d-4cc9-bdac-a5df38956590" + "1e6e4330-cd15-4767-a0ad-a66ad85742cf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b2d19b7-d939-4533-a0b7-4b055d3d928e", - "d982073a-5341-4217-a3c5-9fce8950064f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "98388613-fdf9-4581-8724-6c0b55f412dc", + "2b33a53e-fc99-4aab-bebc-715d9c8176ad" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "462e0b63-2fa2-4ca0-84d3-e49dcdb61ce6" + "b073a804-5e08-4c3a-9e9b-e623ffb2e6ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020448Z:462e0b63-2fa2-4ca0-84d3-e49dcdb61ce6" + "WESTUS:20200207T010028Z:b073a804-5e08-4c3a-9e9b-e623ffb2e6ca" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:47 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02afd5db-2cbd-4a8e-b16b-dbd1d522b959" + "ffb076b3-03af-49f8-8f08-c098e853d8fa" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ccb2b3bd-b9d3-4808-98fb-2736e34a9a3b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "84bf0218-383a-4c40-81cf-20de73ff3158" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "e11280c5-8332-4d10-8d05-e7add5d463a2" + "d87ea205-0a3a-4d4c-a126-96e193f79a81" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020448Z:e11280c5-8332-4d10-8d05-e7add5d463a2" + "WESTUS:20200207T010028Z:d87ea205-0a3a-4d4c-a126-96e193f79a81" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:48 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkMTQxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName5373\",\r\n \"metadataEndpoint\": \"https://provider2707.endpoint5090\",\r\n \"clientId\": \"clientId2485\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e182604a-31ee-467e-9e0d-144b180ce35e" + "bcecc50a-bcc5-42b8-8c5f-78ae4e19aada" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +168,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcFU=\"" + "\"AAAAAAAACkw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5f1e208-e451-4a29-bd37-b17c237e91d0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cf3d503e-efd4-4830-aacb-e50caaae84b3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "905c06eb-41cf-49e8-a8ab-8a4d6947d775" + "d8019fb6-41d9-447e-a00e-92c67a202df2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020449Z:905c06eb-41cf-49e8-a8ab-8a4d6947d775" + "WESTUS:20200207T010029Z:d8019fb6-41d9-447e-a00e-92c67a202df2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:49 GMT" - ], "Content-Length": [ - "499" + "480" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,64 +208,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7263\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\",\r\n \"clientSecret\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1411\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5373\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider2707.endpoint5090\",\r\n \"clientId\": \"clientId2485\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkMTQxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbd5051a-57cd-441b-abf1-5a7534698cee" + "69b81bda-ce1b-40c7-9e79-432461e8e7f0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcFU=\"" + "\"AAAAAAAACkw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ab1eac2-76fc-4442-9684-e7e8093d5c85" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8afa61e9-3353-4bc6-b719-b5be821c5f95" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "76dbd594-9234-4481-8bcb-78237fb62c88" + "97282132-670a-42fb-8f5e-b40645d4cff7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020449Z:76dbd594-9234-4481-8bcb-78237fb62c88" + "WESTUS:20200207T010029Z:97282132-670a-42fb-8f5e-b40645d4cff7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:49 GMT" - ], "Content-Length": [ - "499" + "480" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,59 +274,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7263\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\",\r\n \"clientSecret\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1411\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5373\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider2707.endpoint5090\",\r\n \"clientId\": \"clientId2485\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkMTQxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c662539f-fa71-4d10-82b7-df2087693f17" + "c9371de3-8e64-48e5-8bbd-9eb2e90c8a7e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eeaf888d-a635-4052-8533-878f92898225" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "aebabe60-e853-4c69-9fa9-286ba1551507" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "48eb66ad-4cdf-4c3b-b4c9-f9dba5b56c0c" + "928bb5ef-1ecf-4108-bfec-846a7baeae5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020450Z:48eb66ad-4cdf-4c3b-b4c9-f9dba5b56c0c" + "WESTUS:20200207T010031Z:928bb5ef-1ecf-4108-bfec-846a7baeae5f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:50 GMT" - ], "Content-Length": [ "97" ], @@ -341,66 +341,66 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkODc1OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider299.endpoint2043\",\r\n \"clientId\": \"clientId4765\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName923\",\r\n \"description\": \"description9753\",\r\n \"metadataEndpoint\": \"https://provider4790.endpoint4822\",\r\n \"clientId\": \"clientId5371\",\r\n \"clientSecret\": \"clientSecret46\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "da285837-69ad-4b44-99c5-0e454ddcdcee" + "27590314-7fe5-49d7-9187-1e0870f89b00" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "239" + "237" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:29 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcFY=\"" + "\"AAAAAAAACk0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1c12568-7287-4248-990a-72694303581d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4d587ab8-e5e0-46d9-b325-dd55b0e7b2aa" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "c61e0232-44c9-4f65-bf13-1a790ba27e06" + "3d304798-f4fb-4adc-b3a2-b818e1b46c5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020449Z:c61e0232-44c9-4f65-bf13-1a790ba27e06" + "WESTUS:20200207T010029Z:3d304798-f4fb-4adc-b3a2-b818e1b46c5d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:49 GMT" - ], "Content-Length": [ - "523" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -409,64 +409,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId558\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider299.endpoint2043\",\r\n \"clientId\": \"clientId4765\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8759\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName923\",\r\n \"description\": \"description9753\",\r\n \"metadataEndpoint\": \"https://provider4790.endpoint4822\",\r\n \"clientId\": \"clientId5371\",\r\n \"clientSecret\": \"clientSecret46\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkODc1OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e67d7974-c988-4626-8dcb-f805414a599b" + "c5822d06-7733-4e3d-adf7-7fb7f30cf360" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:29 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcFY=\"" + "\"AAAAAAAACk0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b7af15b-eedd-42b7-8f10-a81073de6dfc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f369d3b5-6539-4f02-8c02-2c65a9fe88a9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "160b7c96-544c-46d5-b6f9-f3e295743b64" + "609fd644-95e7-41ec-9b5f-4e77dfe7fe18" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020449Z:160b7c96-544c-46d5-b6f9-f3e295743b64" + "WESTUS:20200207T010029Z:609fd644-95e7-41ec-9b5f-4e77dfe7fe18" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:49 GMT" - ], "Content-Length": [ - "523" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,64 +475,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId558\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider299.endpoint2043\",\r\n \"clientId\": \"clientId4765\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8759\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName923\",\r\n \"description\": \"description9753\",\r\n \"metadataEndpoint\": \"https://provider4790.endpoint4822\",\r\n \"clientId\": \"clientId5371\",\r\n \"clientSecret\": \"clientSecret46\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkODc1OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e40847d0-12d5-4d3f-ba8a-ef2758e71bc2" + "d244073e-9d2c-43a2-83ed-3a1ee3ed60da" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:31 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcFc=\"" + "\"AAAAAAAACk4=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4254e1e4-eec1-4d3f-97fb-ca8da5b8a614" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e7353c0a-4778-43cb-b6e9-301013ba5991" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "02c96394-4c14-4efa-90a6-ebc8e08d0122" + "49e8f2b4-f5a6-4cd1-8328-e5ac5b9f7247" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020451Z:02c96394-4c14-4efa-90a6-ebc8e08d0122" + "WESTUS:20200207T010032Z:49e8f2b4-f5a6-4cd1-8328-e5ac5b9f7247" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:50 GMT" - ], "Content-Length": [ - "529" + "536" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,59 +541,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId558\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider5980.endpoint3000\",\r\n \"clientId\": \"updatedClient9576\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8759\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName923\",\r\n \"description\": \"description9753\",\r\n \"metadataEndpoint\": \"https://provider1952.endpoint7672\",\r\n \"clientId\": \"updatedClient5723\",\r\n \"clientSecret\": \"clientSecret46\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkODc1OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d32c8440-8308-4a02-9633-3e72ad3084d5" + "ea703824-1680-4832-ba9e-7e89cec41c35" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5d1a970-823b-453b-a571-25d89ba503b1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "db895474-bc98-4b9b-b664-8d8e31d9381b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "71e2430a-cdb1-4716-9ebe-b54c8e99a97d" + "e2964423-cf8e-4cf5-bc06-c5f6434cab30" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020451Z:71e2430a-cdb1-4716-9ebe-b54c8e99a97d" + "WESTUS:20200207T010032Z:e2964423-cf8e-4cf5-bc06-c5f6434cab30" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:50 GMT" - ], "Content-Length": [ "97" ], @@ -608,55 +608,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10e08e91-0825-408b-aed8-128edf029e9b" + "fadb883a-4c80-4b49-be3f-462fbf6cc273" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98862adf-db74-4651-b1b9-3b13f483d9f4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "04aa25d9-a50f-4dc4-875f-1efcb7d7d1c3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "7ea0f6e6-5cd4-4670-a069-3d9cff0b6e4a" + "500db500-65a9-4144-a8fd-39adb833a980" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020450Z:7ea0f6e6-5cd4-4670-a069-3d9cff0b6e4a" + "WESTUS:20200207T010030Z:500db500-65a9-4144-a8fd-39adb833a980" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:49 GMT" - ], "Content-Length": [ "1146" ], @@ -667,59 +667,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7263\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\",\r\n \"clientSecret\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId558\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider299.endpoint2043\",\r\n \"clientId\": \"clientId4765\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1411\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5373\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider2707.endpoint5090\",\r\n \"clientId\": \"clientId2485\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8759\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName923\",\r\n \"description\": \"description9753\",\r\n \"metadataEndpoint\": \"https://provider4790.endpoint4822\",\r\n \"clientId\": \"clientId5371\",\r\n \"clientSecret\": \"clientSecret46\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d995825e-5a43-42f7-b645-b56cc423f831" + "00e18c08-64ed-4d33-82db-37d3dd8f517d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1ef8811-36de-4d19-8fda-8b0d79802276" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "85c79494-95ee-4996-9f53-040901cfba94" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "86ca39b3-94eb-4fad-9093-a4b043b5d5a2" + "2137d30d-ba90-4671-9205-fbefb09e18eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020450Z:86ca39b3-94eb-4fad-9093-a4b043b5d5a2" + "WESTUS:20200207T010030Z:2137d30d-ba90-4671-9205-fbefb09e18eb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:49 GMT" - ], "Content-Length": [ "833" ], @@ -730,62 +730,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7263\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\",\r\n \"clientSecret\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1411\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5373\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider2707.endpoint5090\",\r\n \"clientId\": \"clientId2485\"\r\n }\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkMTQxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f93dd7fc-5062-4aa6-bce3-9cdf71b92cb8" + "a9436b02-8843-4d51-87a1-5f5d96841cff" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:30 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcFU=\"" + "\"AAAAAAAACkw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "689e386a-7935-4d44-a35d-ab6e0babd10e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3a67fb23-fe7d-49ae-91c6-615e7914a110" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "19a2ae32-e74f-4894-8554-8875ff439639" + "481cdc4a-83e1-4f9e-838f-2560cb332529" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020450Z:19a2ae32-e74f-4894-8554-8875ff439639" + "WESTUS:20200207T010030Z:481cdc4a-83e1-4f9e-838f-2560cb332529" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:49 GMT" - ], "Content-Length": [ "0" ], @@ -797,121 +797,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkMTQxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "478283ba-91a3-42e3-8350-fd4dbb4eefdd" + "9c116453-8a6b-4a85-b386-67f9c6a6929e" ], "If-Match": [ - "\"AAAAAAAAcFU=\"" + "\"AAAAAAAACkw=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e80266e9-3d5a-4ef5-b45c-8501240d163a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7b0f391f-ecc3-4e0c-8181-c716ead653d7" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "0dc8c226-c5bf-49b9-889d-a0b7b561eaa4" + "4535e310-9f26-4c20-bac3-7e6848e192b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020450Z:0dc8c226-c5bf-49b9-889d-a0b7b561eaa4" + "WESTUS:20200207T010031Z:4535e310-9f26-4c20-bac3-7e6848e192b0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:50 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId1411?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkMTQxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8030502-99c0-4d50-b6e3-266206321337" + "1ef4d1ec-214e-482c-9f0d-7a64f717c10a" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74abbb2f-75f9-4a6f-a1e3-5738344b599d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cfbbe7e8-b83e-4986-ac00-baa0df477c3b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "b6a94ede-6fd9-4cdc-8c37-2a48d9cd2cf8" + "4b83980a-c167-42a1-9c1c-4b0d1a5cacc5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020451Z:b6a94ede-6fd9-4cdc-8c37-2a48d9cd2cf8" + "WESTUS:20200207T010032Z:4b83980a-c167-42a1-9c1c-4b0d1a5cacc5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:51 GMT" - ], "Expires": [ "-1" ] @@ -920,58 +920,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkODc1OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f18686ef-7307-4092-88e1-041e2610f6ae" + "13253e19-1024-4eb9-b3ea-a8d0a262a257" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:31 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcFY=\"" + "\"AAAAAAAACk0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f68e9ed0-8e5a-4dd6-82a0-2be4dbe71893" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1c826a5c-f436-4097-88cd-8e9b35a12d43" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "4f23ef30-853d-4bdd-9cb8-bae4923a6092" + "82cc5af9-afcc-4ba4-94b5-56980380591d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020450Z:4f23ef30-853d-4bdd-9cb8-bae4923a6092" + "WESTUS:20200207T010031Z:82cc5af9-afcc-4ba4-94b5-56980380591d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:50 GMT" - ], "Content-Length": [ "0" ], @@ -983,25 +983,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkODc1OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadataEndpoint\": \"https://provider5980.endpoint3000\",\r\n \"clientId\": \"updatedClient9576\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadataEndpoint\": \"https://provider1952.endpoint7672\",\r\n \"clientId\": \"updatedClient5723\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19c9064a-f426-491e-af17-63ca45871cfc" + "64f1321e-70c9-48b0-bd94-f41d38dbae0f" ], "If-Match": [ - "\"AAAAAAAAcFY=\"" + "\"AAAAAAAACk0=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1014,33 +1014,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0344688-16af-47cf-b45f-1e073e6a7b34" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c92b6c47-0689-4fda-96c6-ab0dc820eae8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "2d6df3a2-00a0-4acf-a2ea-34b9456ea756" + "626b5378-78b3-48f9-adb6-60794bb0ccb2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020451Z:2d6df3a2-00a0-4acf-a2ea-34b9456ea756" + "WESTUS:20200207T010032Z:626b5378-78b3-48f9-adb6-60794bb0ccb2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:50 GMT" - ], "Expires": [ "-1" ] @@ -1049,121 +1049,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkODc1OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81e8a5a1-f3f4-4fbe-81af-e026edaf7190" + "1ac9095f-b094-4536-a362-65913a844a57" ], "If-Match": [ - "\"AAAAAAAAcFc=\"" + "\"AAAAAAAACk4=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "445056fd-27cf-4ed4-92cf-9aa67ae6e4e1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4d703509-4012-4dfe-a457-79e50e8dec86" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "7d910dfc-5b58-4b5d-99fb-b41e0874d24c" + "a1b2a0bf-8069-4ee6-85fc-ce3f6c5e0cd6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020451Z:7d910dfc-5b58-4b5d-99fb-b41e0874d24c" + "WESTUS:20200207T010032Z:a1b2a0bf-8069-4ee6-85fc-ce3f6c5e0cd6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:50 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/openidConnectProviders/openId8759?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZW5pZENvbm5lY3RQcm92aWRlcnMvb3BlbklkODc1OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4508fd0-5ed0-4eb3-8e14-fdf44dec1c59" + "5f5cf1a1-1835-4196-af23-499df9f97f0b" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:00:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d5d953e-b905-45b4-b82c-46a12d43a32a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1f88eeff-5249-4cd5-a2ab-7c44f029cec6" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "2666f9bf-3c4a-448b-8f77-f1a8d9e1d70e" + "4bcbb7b1-ad28-4429-801a-77ee7f06e087" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020451Z:2666f9bf-3c4a-448b-8f77-f1a8d9e1d70e" + "WESTUS:20200207T010032Z:4bcbb7b1-ad28-4429-801a-77ee7f06e087" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:51 GMT" - ], "Expires": [ "-1" ] @@ -1174,23 +1174,23 @@ ], "Names": { "CreateListUpdateDelete": [ - "openId7263", - "openId558", - "openIdName1735", - "clientId3690", - "openIdName9411", - "clientId4765", - "clientSecret7567", - "description6293", - "updatedClient9576" + "openId1411", + "openId8759", + "openIdName5373", + "clientId2485", + "openIdName923", + "clientId5371", + "clientSecret46", + "description9753", + "updatedClient5723" ], "GetOpenIdMetadataEndpointUrl": [ - "provider5139", - "endpoint3062", - "provider299", - "endpoint2043", - "provider5980", - "endpoint3000" + "provider2707", + "endpoint5090", + "provider4790", + "endpoint4822", + "provider1952", + "endpoint7672" ] }, "Variables": { @@ -1198,7 +1198,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PolicyTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PolicyTests/CreateListUpdateDelete.json index f2cef3cdb144..2d5fa2227081 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PolicyTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PolicyTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a7058e89-de67-45c8-b7d0-dbe879c40c95" + "833e14ae-9ff0-4b69-90de-3d79cf8f57ef" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:23 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAF3EBc=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfb4a43e-e7bd-4822-a0d2-0da78ed6d7e5", - "688db5bc-5618-49a5-8770-a0e6f62133b2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "95cd6e43-204b-4e13-abe2-68d99d92d253", + "c2a3392c-a414-401b-92f4-47d5461ac682" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "3ad9f333-f6c2-43da-93fc-7e54b99cace1" + "d8d3c334-de78-4162-8493-b30f4daa41db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180246Z:3ad9f333-f6c2-43da-93fc-7e54b99cace1" + "WESTUS:20200207T005223Z:d8d3c334-de78-4162-8493-b30f4daa41db" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:45 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF3EBc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba871a65-806a-464a-8edf-995fc0564525" + "ebe37aa9-cfc0-4141-bc37-57763ba74946" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:23 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAF3EBc=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfb0c6cd-a211-466b-9c01-f47ba9085590" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9bd67fbc-53fe-4c69-b6fb-9ce3d92bc1d8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "4b96d700-f17a-4c50-9965-f4326500bc5b" + "8d53a128-2aca-49dd-bf5a-61ac651b17b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180246Z:4b96d700-f17a-4c50-9965-f4326500bc5b" + "WESTUS:20200207T005223Z:8d53a128-2aca-49dd-bf5a-61ac651b17b2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:45 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,64 +136,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF3EBc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c094a0ca-43f1-4b05-af88-01b09c833c95" + "89eca197-1659-4323-8dd2-3f13bb9914e2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:23 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFA=\"" + "\"AAAAAAAACOU=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46690bdf-e765-479b-8698-6098eb381a70" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "672013b6-2f61-46dd-ac88-792e15938273" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "8662f39f-1ad3-496c-929e-92d130239dea" + "2bd668ab-b267-445e-bcd8-6ce6f57e3bce" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180246Z:8662f39f-1ad3-496c-929e-92d130239dea" + "WESTUS:20200207T005223Z:2bd668ab-b267-445e-bcd8-6ce6f57e3bce" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:46 GMT" - ], "Content-Length": [ - "1328" + "1336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,59 +202,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee0e09f-0018-47d8-88fc-9ce7e1af2484" + "b095c329-cf2d-4c33-b630-ee6535a35fd7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d3d226f-7874-404c-aaf7-7e09e62eb02e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4021fc59-739b-44e8-90fb-93dc174eae1d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "c13a773d-2568-4cf7-99c8-a01f1c698375" + "d0d24d31-d847-4d69-a8b6-7a3de5eb8c22" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180248Z:c13a773d-2568-4cf7-99c8-a01f1c698375" + "WESTUS:20200207T005226Z:d0d24d31-d847-4d69-a8b6-7a3de5eb8c22" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:47 GMT" - ], "Content-Length": [ "97" ], @@ -269,22 +269,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c29910d5-c027-4b75-8e58-a20bdc9a9955" + "9d2f9efc-6340-406b-837f-ce4b9f2cfd56" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,38 +297,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:25 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFA=\"" + "\"AAAAAAAACQ0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6979de7-92a0-4b68-bc00-d10bd07cc298" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4f0d1c78-651b-4599-888a-9e1b65ca3df6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "5177140a-6bc1-4a30-b1e2-e5d6e3965866" + "47f99ccc-eaf4-4c84-a60f-07898f5b4aa2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180247Z:5177140a-6bc1-4a30-b1e2-e5d6e3965866" + "WESTUS:20200207T005225Z:47f99ccc-eaf4-4c84-a60f-07898f5b4aa2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:46 GMT" - ], "Content-Length": [ - "1328" + "1336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,26 +337,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7e06c272-57ce-498b-9e4b-a1a26e0c00fc" + "b5da9fd9-bdc1-4c00-9ca8-a4090a5e3ed7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,38 +369,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:27 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFw=\"" + "\"AAAAAAAACRQ=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c98c2117-60cb-41b8-a327-db86208ef7fc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d7a0b6cc-cc5a-41e5-bf8e-c64575d06b8c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "18ae525c-9281-4f72-bf89-fb54b1388c7a" + "2869dbd4-6551-4c97-8aa5-852d72773abc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180248Z:18ae525c-9281-4f72-bf89-fb54b1388c7a" + "WESTUS:20200207T005227Z:2869dbd4-6551-4c97-8aa5-852d72773abc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:47 GMT" - ], "Content-Length": [ - "1328" + "1336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -409,64 +409,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?format=xml&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy?format=xml&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "727765ab-232d-452d-8c87-175525028356" + "397394c8-19fd-40cb-854d-3178d3778ac0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:25 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFA=\"" + "\"AAAAAAAACQ0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3daea67-f22a-4021-afdb-3b94434881f3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1750155e-fa12-4b11-8d4a-ecf33594e3a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "c84f4be0-f931-494e-8a1e-d6b63e1ecd73" + "31c80118-8e44-4f88-89aa-ac8e902417c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180247Z:c84f4be0-f931-494e-8a1e-d6b63e1ecd73" + "WESTUS:20200207T005225Z:31c80118-8e44-4f88-89aa-ac8e902417c7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:47 GMT" - ], "Content-Length": [ - "1328" + "1336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,62 +475,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca30bf1d-253f-4c5a-bc9f-4b4d6193b9fc" + "f005621c-950a-4b09-b5c9-025362771458" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:25 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFA=\"" + "\"AAAAAAAACQ0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b720d22f-4ac3-4ce7-a4e4-474b7cb5732b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "08048f83-5f80-46c0-9506-0798e9573549" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "c9882dd9-9219-4970-b2d5-2d5a6b0c7b5c" + "8bf2457b-a8be-4b25-967b-cd5b8fb95167" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180247Z:c9882dd9-9219-4970-b2d5-2d5a6b0c7b5c" + "WESTUS:20200207T005225Z:8bf2457b-a8be-4b25-967b-cd5b8fb95167" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:47 GMT" - ], "Content-Length": [ "0" ], @@ -542,120 +542,120 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21ea4bf9-e07e-42e5-addf-4b05bfa9f2e7" + "3c39ea5c-f144-4d3f-9d0c-0601e12401e7" ], "If-Match": [ - "\"AAAAAAAAgFA=\"" + "\"AAAAAAAACQ0=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77fd1969-c7ad-487f-a7e8-b9c08b4f8815" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "96e42d19-d0b0-4a40-a025-fcbafb2b6e65" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "35fb55bc-08c9-4649-b300-164fb81a63d8" + "9a9f57df-2ad2-4434-a52a-824396fd1fe7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180248Z:35fb55bc-08c9-4649-b300-164fb81a63d8" + "WESTUS:20200207T005226Z:9a9f57df-2ad2-4434-a52a-824396fd1fe7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:47 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee44dca0-43f9-47bf-80c0-6f2c456f728d" + "d3fe4324-d059-4dba-9e78-03e7c97cd1ea" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:27 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f097f319-b18f-4bef-bd62-d11087eca3ea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "059b2af7-61e4-47e5-bbc9-292fe8bdc94a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "0926a62f-f7a1-4a88-87d6-0c4cb1285ac4" + "ded22e8e-2bb3-46a5-8c02-83c960da9b4d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180248Z:0926a62f-f7a1-4a88-87d6-0c4cb1285ac4" + "WESTUS:20200207T005227Z:ded22e8e-2bb3-46a5-8c02-83c960da9b4d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:47 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -664,89 +664,89 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/%2Fsubscriptions%2Fbab08e11-7b12-4354-9fd1-4b5d64d40b68%2FresourceGroups%2FApi-Default-CentralUS%2Fproviders%2FMicrosoft.ApiManagement%2Fservice%2Fsdktestservice%2Fapis%2Fecho-api/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzLyUyRnN1YnNjcmlwdGlvbnMlMkZiYWIwOGUxMS03YjEyLTQzNTQtOWZkMS00YjVkNjRkNDBiNjglMkZyZXNvdXJjZUdyb3VwcyUyRkFwaS1EZWZhdWx0LUNlbnRyYWxVUyUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5BcGlNYW5hZ2VtZW50JTJGc2VydmljZSUyRnNka3Rlc3RzZXJ2aWNlJTJGYXBpcyUyRmVjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/%2Fsubscriptions%2Fbab08e11-7b12-4354-9fd1-4b5d64d40b68%2FresourceGroups%2FApi-Default-CentralUS%2Fproviders%2FMicrosoft.ApiManagement%2Fservice%2Fsdktestservice20190101%2Fapis%2Fecho-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvJTJGc3Vic2NyaXB0aW9ucyUyRmJhYjA4ZTExLTdiMTItNDM1NC05ZmQxLTRiNWQ2NGQ0MGI2OCUyRnJlc291cmNlR3JvdXBzJTJGQXBpLURlZmF1bHQtQ2VudHJhbFVTJTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQlMkZzZXJ2aWNlJTJGc2RrdGVzdHNlcnZpY2UyMDE5MDEwMSUyRmFwaXMlMkZlY2hvLWFwaS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd0af491-a77b-4255-a834-5c38af3822a2" + "dca22756-d33f-4c97-8875-e103518e0c30" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:27 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78c947c3-b8ab-4d97-ba44-4ca509040953" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "538b95a3-24f7-4f35-8360-8969a3f15fc6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "a7371ea8-2ad4-4fbc-8e3f-f61b7e6b8f49" + "42361666-3a29-4447-b069-3d69ab85064c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180248Z:a7371ea8-2ad4-4fbc-8e3f-f61b7e6b8f49" + "WESTUS:20200207T005227Z:42361666-3a29-4447-b069-3d69ab85064c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:48 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n true\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2d4edaec-f007-4bae-83f6-c717cd1c1753" + "67206fc1-7925-41e9-b043-f946d1420691" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -759,38 +759,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFU=\"" + "\"AAAAAAAACRg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79e9741f-124b-4e60-bba0-83b1f5c8f027" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9446d43c-66fe-4ce4-ab7c-14c8f8d7811b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "e4d7d0ca-fcb3-435f-a722-7eccdb340dd4" + "ea4eb89a-cba1-41d8-9009-b669036d3525" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180249Z:e4d7d0ca-fcb3-435f-a722-7eccdb340dd4" + "WESTUS:20200207T005228Z:ea4eb89a-cba1-41d8-9009-b669036d3525" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:48 GMT" - ], "Content-Length": [ - "619" + "627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -799,64 +799,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3037ad1d-c75c-43c6-b924-7c6cd549b846" + "ea8956cb-10bf-4135-8c10-6e932f2fd537" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFU=\"" + "\"AAAAAAAACRg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ea8a5df-5703-4a44-8890-7193f68c8f41" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cd3b36e8-270a-4e87-9ddb-4dd9ae492d9a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "d03f682e-b19f-4cfc-a1dc-b0d80a938d71" + "2a4d2f5e-808d-4826-bb84-2ce82b299fdf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180249Z:d03f682e-b19f-4cfc-a1dc-b0d80a938d71" + "WESTUS:20200207T005228Z:2a4d2f5e-808d-4826-bb84-2ce82b299fdf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:48 GMT" - ], "Content-Length": [ - "619" + "627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -865,59 +865,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3cdeef1-f577-4447-8c44-910872a9d3f6" + "f2aaf828-41ef-4e6e-bbf0-641d72279b14" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "067ba619-da8e-4890-bef5-6a3c4055c9c0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "07cd2079-a551-4ddd-9d44-6155f601252e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "48abb161-bf98-412e-9e05-935ecd79704d" + "47284555-7658-45a0-a0c5-c03ec7fa4885" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180249Z:48abb161-bf98-412e-9e05-935ecd79704d" + "WESTUS:20200207T005229Z:47284555-7658-45a0-a0c5-c03ec7fa4885" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:49 GMT" - ], "Content-Length": [ "97" ], @@ -932,60 +932,60 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?format=rawxml&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9cmF3eG1sJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy?format=rawxml&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fbb78a6-1b9e-4604-b042-8d33fd5946d5" + "68db2014-fc25-4836-a09a-18b6bd04a20a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:28 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFU=\"" + "\"AAAAAAAACRg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "792bfee0-ba70-4d80-8bf5-409e027fe0c8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5ee7092e-b7fb-4198-b166-8a981d6c2494" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "b41595ab-4a00-47da-a631-28164e88d3e7" + "ee37ce6b-c68b-4252-8d04-d84cf92be1bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180249Z:b41595ab-4a00-47da-a631-28164e88d3e7" + "WESTUS:20200207T005228Z:ee37ce6b-c68b-4252-8d04-d84cf92be1bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:48 GMT" - ], "Content-Length": [ - "622" + "630" ], "Content-Type": [ "application/json; charset=utf-8" @@ -994,62 +994,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "070a750f-e381-4356-a1dd-6805f3b2ee4a" + "537f7b17-8aba-4b0a-9cfb-88e004a7b0bf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:29 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgFU=\"" + "\"AAAAAAAACRg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dae6c8ab-7dcc-4355-841a-e17a9dce769b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "17ae975f-1267-4c78-952e-b53da22db5b5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "dd1c6711-b453-4256-8799-e1530d241155" + "69c2db0b-fd73-4d22-b9db-14b81f313651" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180249Z:dd1c6711-b453-4256-8799-e1530d241155" + "WESTUS:20200207T005229Z:69c2db0b-fd73-4d22-b9db-14b81f313651" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:48 GMT" - ], "Content-Length": [ "0" ], @@ -1061,120 +1061,120 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fad2963-43bf-4c58-aee4-72f91395e7b6" + "ee7e118d-e788-4e32-84b5-668cd53f7f60" ], "If-Match": [ - "\"AAAAAAAAgFU=\"" + "\"AAAAAAAACRg=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:29 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfc729c9-85c9-410a-9cf6-1ea830e2eb7e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4097dfbe-ec1c-47f5-b00b-093dd671c824" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "7786b26d-0856-4483-accc-70e0077907e2" + "af4f703b-5b6b-4989-a4a6-422e0143da6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180249Z:7786b26d-0856-4483-accc-70e0077907e2" + "WESTUS:20200207T005229Z:af4f703b-5b6b-4989-a4a6-422e0143da6b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:49 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e63c356-aa70-4fc6-ba9f-b1132279ddc8" + "15b460aa-56e2-4aeb-aae1-c160f55c466e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:30 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a2d3906-3fba-45c7-b067-512e592c0984" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e7d797f4-761f-434b-aa81-af064a5bff0e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "eee25b7c-cc0b-448d-ab58-e412d0872eeb" + "6e8e8df4-20ad-4a7a-a78f-61640af3f7c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180250Z:eee25b7c-cc0b-448d-ab58-e412d0872eeb" + "WESTUS:20200207T005230Z:6e8e8df4-20ad-4a7a-a78f-61640af3f7c8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:49 GMT" - ], "Content-Length": [ - "7418" + "7477" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1183,59 +1183,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n\\t\\t}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b11ea44-82da-43f0-b1b6-799a3e81edec" + "d46a46b1-0248-4d44-a2c1-7fc35fd3b44d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:30 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d708c286-12dd-4e16-af76-6b2012baa784" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "35821781-d108-47e8-8735-b7cb1306d9d2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "9bbbe5ae-96ce-4a19-be84-833fb777a55e" + "b6b3c925-0c53-4930-854d-f22af99f511d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180250Z:9bbbe5ae-96ce-4a19-be84-833fb777a55e" + "WESTUS:20200207T005230Z:b6b3c925-0c53-4930-854d-f22af99f511d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:49 GMT" - ], "Content-Length": [ "97" ], @@ -1250,55 +1250,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b318cad7-e7dc-4933-b6d3-8b6b55a8cb43" + "1fe39e26-e0dc-4354-8fbc-2333d1717ce0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25de0071-44cb-4d29-b4fe-46dca48c8a88" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c5093c5f-7e08-428f-b9e0-cf76df29b0bf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-correlation-request-id": [ - "22066a8e-e5d9-44e5-becc-aeaeb68ee258" + "eff809e5-17b3-492d-9d28-09e5d4767739" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180252Z:22066a8e-e5d9-44e5-becc-aeaeb68ee258" + "WESTUS:20200207T005232Z:eff809e5-17b3-492d-9d28-09e5d4767739" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:51 GMT" - ], "Content-Length": [ "97" ], @@ -1313,25 +1313,25 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "394122e2-6219-4c08-b9c6-40a054298336" + "a71bb9eb-5f79-4639-91b8-4afc7cc5fbe6" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1344,38 +1344,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:31 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgGM=\"" + "\"AAAAAAAACR8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "561ca204-c3cc-4e66-9d1f-f78d619867d5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "dd4e82a4-2d3b-4e86-b8e6-798dda42d9f8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "3d4af4ca-bb3c-4c87-ac20-56854032f76c" + "ad352178-2dc5-478b-8d97-52d39327f44c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180251Z:3d4af4ca-bb3c-4c87-ac20-56854032f76c" + "WESTUS:20200207T005231Z:ad352178-2dc5-478b-8d97-52d39327f44c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:50 GMT" - ], "Content-Length": [ - "588" + "596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1384,64 +1384,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?format=xml&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource/policies/policy?format=xml&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44478c8e-a0b5-46f0-9858-e5e8c871081a" + "18b4badf-946e-4e90-a9ab-c21cf5672773" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:31 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgGM=\"" + "\"AAAAAAAACR8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b7059add-9c4f-42ad-9d77-f19b247f7a7c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "57549952-1c40-4ede-b7e2-f7d1531934cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "697c7b43-e7cb-4470-95cf-168af7a78f83" + "d9c99e11-d291-421f-90bf-5a3dbfea722b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180251Z:697c7b43-e7cb-4470-95cf-168af7a78f83" + "WESTUS:20200207T005231Z:d9c99e11-d291-421f-90bf-5a3dbfea722b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:50 GMT" - ], "Content-Length": [ - "588" + "596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1450,62 +1450,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "552eed14-8127-4b76-aa9d-3f7feb303f4e" + "89203f10-3fac-4a70-a458-cbac6cc73fcf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:32 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgGM=\"" + "\"AAAAAAAACR8=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2cc3e9b1-0e8f-4804-bd25-62d919fb5269" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "96a9c091-0fa3-4c55-b756-4aa67e9999a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-correlation-request-id": [ - "c753a94d-d607-4efd-9c9d-a8d31b190836" + "2ab834e7-f5b2-4d58-aefc-dee7f4503fa7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180251Z:c753a94d-d607-4efd-9c9d-a8d31b190836" + "WESTUS:20200207T005232Z:2ab834e7-f5b2-4d58-aefc-dee7f4503fa7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:50 GMT" - ], "Content-Length": [ "0" ], @@ -1517,120 +1517,120 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "054768e3-5818-4c07-a268-8ab83953c477" + "0f494256-33e5-4452-ba8e-b6109f273a5c" ], "If-Match": [ - "\"AAAAAAAAgGM=\"" + "\"AAAAAAAACR8=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae0b8bca-dbfc-4f74-b6af-41b2baf7f2db" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c7f6c0f2-aff9-4daa-abcc-d6ecf5b9192d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "7eb76b18-5a32-40fe-9a28-cf6dc7d3a42b" + "d6da906a-7883-4ae7-a6d6-71621d1f289c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180252Z:7eb76b18-5a32-40fe-9a28-cf6dc7d3a42b" + "WESTUS:20200207T005232Z:d6da906a-7883-4ae7-a6d6-71621d1f289c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:51 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Unlimited'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?$filter=name%20eq%20'Unlimited'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzPyRmaWx0ZXI9bmFtZSUyMGVxJTIwJ1VubGltaXRlZCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21502c17-1b10-4291-ac17-a24ff003ba69" + "acebc9a0-55cc-44dd-8b1d-2a355419c5d6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8fff2f5c-7c4e-4c91-abf9-ac7ce1fe6e3e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9a2ae8d0-b601-4c70-b18b-fcff64ccbd98" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], "x-ms-correlation-request-id": [ - "501d00b1-5267-4cee-8035-5188a52d8765" + "8153694f-2e71-4aa1-be71-cb8ef97d39e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180253Z:501d00b1-5267-4cee-8035-5188a52d8765" + "WESTUS:20200207T005232Z:8153694f-2e71-4aa1-be71-cb8ef97d39e7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:52 GMT" - ], "Content-Length": [ - "656" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,59 +1639,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e0c1049-bb14-49d8-9493-08eadbcf2cf9" + "aac6153a-2a7a-4bf5-b88b-0878c71d9895" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:32 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "747bcd89-7f96-4308-8505-edd18c2680ba" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "23185dc0-f912-4885-aaf9-1234965e4a57" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], "x-ms-correlation-request-id": [ - "44a7ac38-8b45-4b97-8292-7068a5b6d4c4" + "2f029143-be8f-4350-bed0-a3c62ec6098c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180253Z:44a7ac38-8b45-4b97-8292-7068a5b6d4c4" + "WESTUS:20200207T005232Z:2f029143-be8f-4350-bed0-a3c62ec6098c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:52 GMT" - ], "Content-Length": [ "97" ], @@ -1706,60 +1706,60 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef6e01d7-fafd-4900-b1aa-c20cbb14a799" + "764ca766-4db9-4080-937c-fe636d646def" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:33 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgGo=\"" + "\"AAAAAAAACSY=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb9a8c8c-e806-4e01-a800-ec0c4ffb4278" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b98a3d22-4dfe-421b-85c3-6b557c710b09" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], "x-ms-correlation-request-id": [ - "3bf388e3-d2a7-44d8-bfa6-bdd34ac747ec" + "e863df4d-675e-4b2b-ab61-ed492ea0b3fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180255Z:3bf388e3-d2a7-44d8-bfa6-bdd34ac747ec" + "WESTUS:20200207T005234Z:e863df4d-675e-4b2b-ab61-ed492ea0b3fe" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:54 GMT" - ], "Content-Length": [ - "626" + "634" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1768,59 +1768,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43f70839-b2f0-49c4-85e9-322c3c1d4b2e" + "058b70c8-6c72-4431-8f5c-cf580fbd7b1c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48fe24a5-2291-483c-a587-22934354d0cd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4e492382-a151-441f-b298-3ca01d998b62" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], "x-ms-correlation-request-id": [ - "099eab2c-9edb-49aa-a14d-00043c965f9a" + "715025e4-ccb4-46b4-b25a-f6aa3daba778" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180255Z:099eab2c-9edb-49aa-a14d-00043c965f9a" + "WESTUS:20200207T005234Z:715025e4-ccb4-46b4-b25a-f6aa3daba778" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:55 GMT" - ], "Content-Length": [ "97" ], @@ -1835,22 +1835,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2c62c65c-c113-4b0a-a161-d4589b042030" + "f6cc875e-d4ea-4b32-94e6-2e96e355e01d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1863,38 +1863,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:33 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgGo=\"" + "\"AAAAAAAACSY=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ae089dd-7db8-4752-8b15-5886441ee117" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a4d1ed80-de07-4c79-807e-a828c300a359" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-correlation-request-id": [ - "bd090e35-e0c5-40c7-88ec-153a63d7afad" + "803b1623-b5bf-4d0d-ab6c-7d21d3766bb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180254Z:bd090e35-e0c5-40c7-88ec-153a63d7afad" + "WESTUS:20200207T005233Z:803b1623-b5bf-4d0d-ab6c-7d21d3766bb7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:54 GMT" - ], "Content-Length": [ - "626" + "634" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1903,64 +1903,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?format=xml&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?format=xml&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbb014c0-c445-48f2-88cb-02bb18e0f84c" + "db78f1ad-3499-4a12-a3f5-706ae1ba4350" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:34 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgGo=\"" + "\"AAAAAAAACSY=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6de4bc7-e140-4b4f-9a5e-956df1e2863b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "425d23b6-4c4f-442f-a39b-959457f442ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], "x-ms-correlation-request-id": [ - "3a805481-01de-444f-8ab3-7d3c17997ab6" + "eb281a43-71b8-47c4-9c01-c91fa825957d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180255Z:3a805481-01de-444f-8ab3-7d3c17997ab6" + "WESTUS:20200207T005234Z:eb281a43-71b8-47c4-9c01-c91fa825957d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:54 GMT" - ], "Content-Length": [ - "626" + "634" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1969,62 +1969,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef8a43b-dc86-4b75-bfbd-cb7ff2fc8005" + "f9b7492f-9abe-4698-87c4-461b28190f67" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:34 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAgGo=\"" + "\"AAAAAAAACSY=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91c2c716-8ad9-4e66-9243-4bea9d8ef030" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "16347ea0-14f5-4fbd-949d-936495e83795" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], "x-ms-correlation-request-id": [ - "d93dc1ef-af21-46aa-9984-6cce1691e41e" + "c98c76fd-5625-4802-ac27-2d7cbd8672d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180255Z:d93dc1ef-af21-46aa-9984-6cce1691e41e" + "WESTUS:20200207T005234Z:c98c76fd-5625-4802-ac27-2d7cbd8672d9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:54 GMT" - ], "Content-Length": [ "0" ], @@ -2036,63 +2036,63 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77361789-82df-40d2-ad0a-f6fc91876d30" + "0d695e4a-fab7-411a-9c23-41b7e5aba223" ], "If-Match": [ - "\"AAAAAAAAgGo=\"" + "\"AAAAAAAACSY=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.9.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1591c3c1-505b-4cd7-a030-e502c3fcfdd3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "20af3648-bb27-4147-b6d6-f25ccca59476" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "7d68c292-0e82-4151-8641-c447ec76f6ec" + "ab3dd0d5-338b-4c6e-946f-891070ebd452" ], "x-ms-routing-request-id": [ - "WESTUS2:20190426T180255Z:7d68c292-0e82-4151-8641-c447ec76f6ec" + "WESTUS:20200207T005234Z:ab3dd0d5-338b-4c6e-946f-891070ebd452" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 26 Apr 2019 18:02:55 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -2105,7 +2105,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PolicyUriTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PolicyUriTests/CreateListUpdateDelete.json index 400e436df0e0..df02065d52e9 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PolicyUriTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PolicyUriTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2c23a326-98ec-4983-9176-fbbe5c1e733e" + "ae3ef79e-e72e-42aa-b2fe-ff820c7d99b0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf1cca5a-759b-44da-9621-c979c1479146", - "9acd3f5f-a0df-4feb-81c6-3d40a1473cd0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "905ef529-9eea-40cb-84b1-6806955f71e0", + "1cf21464-b37a-48e9-a928-d9a5868d925d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "e6536733-6b69-47ab-808c-fa68ff6c6fd8" + "79c17a52-cab6-430f-8b85-c4c28a1a41d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020846Z:e6536733-6b69-47ab-808c-fa68ff6c6fd8" + "WESTUS:20200207T010619Z:79c17a52-cab6-430f-8b85-c4c28a1a41d3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:46 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41a50012-41e6-45d0-85f5-bd0c4a38c43c" + "eaf64029-278b-427e-a12f-4d6cf3ce70b6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1251a62e-a41c-49b0-b885-344dc649b12f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e82af72a-7ff2-4dea-a119-ad7e759eef2b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "50b43873-21ee-430d-a76a-85d0f39b338c" + "3c24f054-0484-400c-8c4e-20d839da6e3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020846Z:50b43873-21ee-430d-a76a-85d0f39b338c" + "WESTUS:20200207T010619Z:3c24f054-0484-400c-8c4e-20d839da6e3e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:46 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,64 +136,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89f754c2-071a-4fe7-a608-b5893243ce69" + "cc2dc1b3-9436-4853-9334-d8514fa4fd69" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAb1Q=\"" + "\"AAAAAAAACRQ=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1be766ed-ca51-44cc-9fe3-30e9c38034fc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "242e9892-3a31-4d43-aef0-82375b191bb7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "5d55c732-1d43-4825-b5a7-4f16ac8c8b4d" + "af730766-bad0-44dc-9d85-5397e7b0a186" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020847Z:5d55c732-1d43-4825-b5a7-4f16ac8c8b4d" + "WESTUS:20200207T010619Z:af730766-bad0-44dc-9d85-5397e7b0a186" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:46 GMT" - ], "Content-Length": [ - "1328" + "1336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,26 +202,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvcG9saWN5YXBpNDMzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description3509\",\r\n \"displayName\": \"display2757\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path8612\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description4731\",\r\n \"displayName\": \"display6485\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path1440\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9641f623-b1bc-4bcb-a365-1bbe1652d56e" + "1d3fc00d-2d98-495e-ba94-1c8741c0af15" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -234,38 +234,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:18 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcPE=\"" + "\"AAAAAAAAC0g=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "018d467b-3e11-4fd4-b972-eab6b9d9e624" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "def67966-928f-48d3-a79a-9690c4cc6e3e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "d06c2f3e-d3f7-45f0-8d60-a64148dc28d2" + "c39a6ff3-6d17-4628-93a5-9146d9cbd222" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020847Z:d06c2f3e-d3f7-45f0-8d60-a64148dc28d2" + "WESTUS:20200207T010619Z:c39a6ff3-6d17-4628-93a5-9146d9cbd222" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:08:47 GMT" - ], "Content-Length": [ - "760" + "766" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,58 +274,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi4721\",\r\n \"properties\": {\r\n \"displayName\": \"display2757\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description3509\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path8612\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi433\",\r\n \"properties\": {\r\n \"displayName\": \"display6485\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description4731\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path1440\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvcG9saWN5YXBpNDMzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcPE=\"" + "\"AAAAAAAAC0g=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "781b0164-ed15-4214-bda6-2e46b297700e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8162231a-059b-48af-b434-9e6efcd6e701" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "39521ff9-4c8d-466e-bc9c-7bafdf496bbf" + "1a8f7a74-3e9c-45e9-8690-dea0f09f684e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020917Z:39521ff9-4c8d-466e-bc9c-7bafdf496bbf" + "WESTUS:20200207T010650Z:1a8f7a74-3e9c-45e9-8690-dea0f09f684e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:17 GMT" - ], "Content-Length": [ - "760" + "766" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,26 +334,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi4721\",\r\n \"properties\": {\r\n \"displayName\": \"display2757\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description3509\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path8612\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi433\",\r\n \"properties\": {\r\n \"displayName\": \"display6485\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description4731\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path1440\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjEvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvcG9saWN5YXBpNDMzL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"https://raw.githubusercontent.com/Azure/api-management-samples/master/sdkClientResources/ApiPolicy.xml\",\r\n \"format\": \"xml-link\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "da659543-9dc8-487c-8923-992399eeb87a" + "91d78c84-08fb-43be-8a50-69ad822f005d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,38 +366,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:50 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcPY=\"" + "\"AAAAAAAAC00=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81f3296e-ec08-4ee3-bf68-a6e83ee7a9d0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b211fd44-fa4a-4672-89bb-1048121e3f21" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "fe7e11e2-d624-4a71-a105-464f42b8a0f1" + "18a21bb7-65f7-4d19-bdeb-c38b58b08e56" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020918Z:fe7e11e2-d624-4a71-a105-464f42b8a0f1" + "WESTUS:20200207T010650Z:18a21bb7-65f7-4d19-bdeb-c38b58b08e56" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:18 GMT" - ], "Content-Length": [ - "804" + "811" ], "Content-Type": [ "application/json; charset=utf-8" @@ -406,62 +406,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjEvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvcG9saWN5YXBpNDMzL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "165d08d3-0a96-4765-8781-aad67b5fd922" + "55208c79-412f-41b5-9594-439a30b6a575" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:50 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcPY=\"" + "\"AAAAAAAAC00=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f8bd6ef-edd0-4173-a7e7-536e11a85435" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d0a1fa85-0aee-43af-9649-ed5e8dc17bf6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "f9e8ccaf-4e2e-41b3-82cc-da04b5e0f905" + "1a8ad4f5-9139-4ff4-898c-a7a40ed90e6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020918Z:f9e8ccaf-4e2e-41b3-82cc-da04b5e0f905" + "WESTUS:20200207T010651Z:1a8ad4f5-9139-4ff4-898c-a7a40ed90e6a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:18 GMT" - ], "Content-Length": [ "0" ], @@ -473,118 +473,118 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjEvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvcG9saWN5YXBpNDMzL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c516a3f-ebe7-4b73-86c1-de68ab7ee31d" + "e062c03a-34b5-44c3-ba7d-e1d75dfbeab9" ], "If-Match": [ - "\"AAAAAAAAcPY=\"" + "\"AAAAAAAAC00=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "149d11e7-eb9f-420f-ab4c-6e3ebacad0f1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "791d82be-b38e-4017-a60c-9f97b12b5ea0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "b7311975-adea-474e-96eb-abd884241f4e" + "310574e2-aa98-45a7-b7f5-1c677c06ed0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020919Z:b7311975-adea-474e-96eb-abd884241f4e" + "WESTUS:20200207T010651Z:310574e2-aa98-45a7-b7f5-1c677c06ed0c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:18 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjEvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvcG9saWN5YXBpNDMzL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f42d762-9e2a-45ef-a0ba-1c91c1cbb832" + "8d3faac4-3465-4a1a-8e4a-13127b145900" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30f943fc-f01a-4ebe-8438-7f630241f664" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "260f531b-5a95-44d0-b85f-18b756f29539" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "aaa63864-d396-46a7-9559-7456921fc059" + "054e84e0-43fd-489d-bb47-65de7123292c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020919Z:aaa63864-d396-46a7-9559-7456921fc059" + "WESTUS:20200207T010651Z:054e84e0-43fd-489d-bb47-65de7123292c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:18 GMT" - ], "Content-Length": [ "97" ], @@ -599,120 +599,120 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjE/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/policyapi433?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvcG9saWN5YXBpNDMzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "587757f4-8f5d-41af-9b1b-2f04cc8eb6c1" + "e8418cfe-1221-4888-a940-d0fe85001313" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ece45018-db49-4341-a9d4-be6a3781b975" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8dcf63d8-30e7-4cb6-b615-739780ad0b94" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "5405d5b1-59b5-4245-afeb-a54e23030401" + "2533e819-4840-475f-a027-e30fc624e447" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020919Z:5405d5b1-59b5-4245-afeb-a54e23030401" + "WESTUS:20200207T010651Z:2533e819-4840-475f-a027-e30fc624e447" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:19 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Unlimited'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?$filter=name%20eq%20'Unlimited'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzPyRmaWx0ZXI9bmFtZSUyMGVxJTIwJ1VubGltaXRlZCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90ae2fb8-3ced-4bf9-9a53-06ebc4dc6db6" + "8ad73e57-3d27-40fd-833e-220b6905a864" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a1dcdec-e03d-41fa-a4de-c1fcc511136e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a61956f2-2c7b-4f92-b879-7fb553849cde" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "31672800-e33f-424a-bd86-0086cb87ba9f" + "e828e372-5e21-4e5e-9161-1e7d08582847" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020919Z:31672800-e33f-424a-bd86-0086cb87ba9f" + "WESTUS:20200207T010651Z:e828e372-5e21-4e5e-9161-1e7d08582847" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:19 GMT" - ], "Content-Length": [ - "656" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -721,59 +721,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6dddb81d-47af-47b6-af1c-92e7432cfd26" + "6e163513-9316-4b76-8207-392d97b2698f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e80f36b2-685d-45a3-963c-de3c30af15a3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "220bb9f7-4c28-4673-b6c4-aee03960465f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "b7d9019d-a0a7-442c-98bc-b577f85fa143" + "fab9687c-badc-4af3-8aed-d32f7281cf8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020919Z:b7d9019d-a0a7-442c-98bc-b577f85fa143" + "WESTUS:20200207T010651Z:fab9687c-badc-4af3-8aed-d32f7281cf8c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:19 GMT" - ], "Content-Length": [ "97" ], @@ -788,60 +788,60 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ca5dd14-eb18-43db-ae5f-abd1eedce92b" + "7ad44887-4d6e-4eef-b3ae-0f792b5c9c50" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:51 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcP8=\"" + "\"AAAAAAAAC1Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "420c0c31-5391-4640-9b4e-cdebbe9ae7b9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cb8edd25-585e-41d5-8daa-6d04f55cfd7e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "e1e0195e-a39e-4d58-8ca5-4d42c7363487" + "21ea1b4b-7f3b-40a3-a94f-07a01c736881" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020920Z:e1e0195e-a39e-4d58-8ca5-4d42c7363487" + "WESTUS:20200207T010652Z:21ea1b4b-7f3b-40a3-a94f-07a01c736881" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:20 GMT" - ], "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -850,59 +850,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bc4541b-fe8b-4a3c-b6d2-09dc2fad5de0" + "26c7d524-52ee-4b35-afcb-d6bbc0ba061b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82e1115d-8ca1-4b9e-99e4-5bfd534ccf89" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9f675309-4a53-4da5-aea8-f4d4baa8ab23" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "6a56ee39-9020-46ee-9cfb-07466afb2a5f" + "976a7b68-997f-49ba-b30c-a915f7ef0683" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020921Z:6a56ee39-9020-46ee-9cfb-07466afb2a5f" + "WESTUS:20200207T010653Z:976a7b68-997f-49ba-b30c-a915f7ef0683" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:20 GMT" - ], "Content-Length": [ "97" ], @@ -917,22 +917,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"https://raw.githubusercontent.com/Azure/api-management-samples/master/sdkClientResources/ProductPolicy.xml\",\r\n \"format\": \"xml-link\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3346f88c-ba96-4f21-ac41-f48b6dcd5698" + "84d291ac-6242-4091-b3ca-cb47c1ca7239" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -945,38 +945,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:51 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcP8=\"" + "\"AAAAAAAAC1Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85db5189-7aa5-4364-acff-b87f00c1cf11" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fe150d3f-fbd8-42cb-8eb5-ce9aa45c764a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "3cb0925f-482c-45c5-a87e-f31527ec4c9a" + "9e1694e7-95e1-48b3-9b65-daae33c2f7bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020920Z:3cb0925f-482c-45c5-a87e-f31527ec4c9a" + "WESTUS:20200207T010652Z:9e1694e7-95e1-48b3-9b65-daae33c2f7bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:19 GMT" - ], "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -985,62 +985,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43dde621-9047-452a-a251-2d9d7099588d" + "1dfe0b68-8bc1-46bf-8086-15ac3c8b3a3b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:52 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcP8=\"" + "\"AAAAAAAAC1Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3a16c3c-e40b-4649-8be8-1230b23cb5b2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6edaae18-7cd8-4c6e-b763-856e3233455d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "7b494ecc-5d8c-405c-b78b-6d7bd2baa7e3" + "4a5b2834-58f7-4429-a8c6-d21380299a9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020920Z:7b494ecc-5d8c-405c-b78b-6d7bd2baa7e3" + "WESTUS:20200207T010652Z:4a5b2834-58f7-4429-a8c6-d21380299a9f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:20 GMT" - ], "Content-Length": [ "0" ], @@ -1052,63 +1052,63 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c215801b-53f3-4ed0-86ad-0dd5ec4048d4" + "365daf68-3b30-4a41-b459-20b3407e3c86" ], "If-Match": [ - "\"AAAAAAAAcP8=\"" + "\"AAAAAAAAC1Y=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43e933fe-dc9c-4b58-be96-b82c42f33790" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "277b1aad-b0fe-41df-9035-6d402c2da8e8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "77544577-9c48-433a-953c-144eab9b76b7" + "5ee30077-9ec4-42f5-b54f-1ca737807a15" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020921Z:77544577-9c48-433a-953c-144eab9b76b7" + "WESTUS:20200207T010653Z:5ee30077-9ec4-42f5-b54f-1ca737807a15" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:20 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -1117,10 +1117,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "policyapi4721", - "display2757", - "description3509", - "path8612" + "policyapi433", + "display6485", + "description4731", + "path1440" ] }, "Variables": { @@ -1128,7 +1128,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/ApisListAddRemove.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/ApisListAddRemove.json index 3e2f19c1cd2b..f49717418d93 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/ApisListAddRemove.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/ApisListAddRemove.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "031fccab-2181-4ed8-a578-47c2c3fb881f" + "c3fa8c92-4e7b-4f60-a0b2-521002f97d00" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a76c79e-c811-4d42-a119-7818d66f9ec3", - "9484f92c-1555-4ddc-8e59-9ee0df9c691e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3ab1254b-ba55-4fd6-91d9-153d4f715cda", + "3e252b04-4d0c-4430-969d-60f442fbd01b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "493af88d-1e55-4c6b-862d-0974005df4fd" + "82c14a8b-bce8-4b41-bfb4-7bd62308b6a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020954Z:493af88d-1e55-4c6b-862d-0974005df4fd" + "WESTUS:20200207T005301Z:82c14a8b-bce8-4b41-bfb4-7bd62308b6a1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:54 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c75a10c8-ceef-4964-9aaa-1e25d60f899b" + "bc67b171-20e4-4f05-970a-ec9846308934" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b13a6152-2dc0-4118-82fb-1c1617c25541" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "134d259d-b8ab-4579-8fcd-066cd4484f9c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "ce59a56a-c904-43af-9f8a-cec4c9229c53" + "7f46a9ce-7683-4fc5-ade6-c66c19e22907" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020955Z:ce59a56a-c904-43af-9f8a-cec4c9229c53" + "WESTUS:20200207T005302Z:7f46a9ce-7683-4fc5-ade6-c66c19e22907" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:55 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzPyRmaWx0ZXI9bmFtZSUyMGVxJTIwJ1N0YXJ0ZXInJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6db747d0-fcfb-45e6-a8a9-4db7ba78a4cc" + "b83f34fc-3b61-44de-ae1e-de5aca3bbae3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e584a058-8330-4ef1-b169-36cf171ae965" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "49a0d5aa-9a8a-4cd3-ab33-2919523fb866" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "ee9fec60-fa2b-4433-bc15-073c42fc45bb" + "decfb100-4318-4b54-a5fd-24127c145b47" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020955Z:ee9fec60-fa2b-4433-bc15-073c42fc45bb" + "WESTUS:20200207T005302Z:decfb100-4318-4b54-a5fd-24127c145b47" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:55 GMT" - ], "Content-Length": [ - "647" + "661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ad3f33-c93a-4d1c-a1ec-87a4a073b087" + "6ef6f274-9a61-4a80-a92c-d8b363209d75" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:02 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb746174-2055-407e-b36f-587dde1298d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3c13e794-b69b-4a84-825d-6951a6022019" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11997" ], "x-ms-correlation-request-id": [ - "9b6cdcbd-8a0c-4ad4-91dc-1dd36aeb72b4" + "8a4c81ca-c7a0-4eab-ba38-0dc1645b5b37" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020955Z:9b6cdcbd-8a0c-4ad4-91dc-1dd36aeb72b4" + "WESTUS:20200207T005303Z:8a4c81ca-c7a0-4eab-ba38-0dc1645b5b37" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:55 GMT" - ], "Content-Length": [ - "702" + "725" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "011acf57-f4af-4f6a-bea5-17da9de46bf4" + "a425c99a-edf9-4ca3-a120-c8f77d525b2e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17d7689c-d5a2-4d58-8ec9-3abb39b4dec6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ceb10366-0898-4ca7-b2e4-4aa2ef2d9538" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11995" ], "x-ms-correlation-request-id": [ - "b0de0768-b5b6-4e6d-82c7-c1d012063ceb" + "fc457f94-5b91-4811-b4e5-2000a85fc8e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020956Z:b0de0768-b5b6-4e6d-82c7-c1d012063ceb" + "WESTUS:20200207T005304Z:fc457f94-5b91-4811-b4e5-2000a85fc8e7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:56 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,61 +325,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10636581-0b84-49b5-971f-f90643a6bba0" + "1f973a71-1a9f-4337-ad47-daa404f1df61" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8c708ca-cda9-4b08-be2a-d38d811ccd4d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4a1e56a4-69de-4d71-8c91-889ceb34838e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11994" ], "x-ms-correlation-request-id": [ - "84513540-05ad-4880-bf9c-7c149e35374b" + "01296008-e125-4036-8691-2fab863177c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020957Z:84513540-05ad-4880-bf9c-7c149e35374b" + "WESTUS:20200207T005304Z:01296008-e125-4036-8691-2fab863177c5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:57 GMT" - ], "Content-Length": [ - "702" + "725" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,64 +388,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e268f0b-f06d-4b1c-8401-33f420fd3a9c" + "14371e48-c7cb-4424-9519-56c3875b95f3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:02 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAb1s=\"" + "\"AAAAAAAACRs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c41f71d-a691-4b6e-81ae-101813ed25b1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "504b8ae1-360e-4f4a-8724-635f8b15c0e8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11996" ], "x-ms-correlation-request-id": [ - "33a31579-ee3e-415c-a6a3-34cbe8553a8c" + "02366023-b00c-4d07-a769-c869440cad99" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020956Z:33a31579-ee3e-415c-a6a3-34cbe8553a8c" + "WESTUS:20200207T005303Z:02366023-b00c-4d07-a769-c869440cad99" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:55 GMT" - ], "Content-Length": [ - "713" + "721" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,124 +454,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06a64f34-6b37-479f-9046-aa6a9c512428" + "4bbd967c-4fc9-4a58-8b36-72e7cb5020ff" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f537800c-fed6-40f5-b8e5-0fb5c1cb6d49" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "75490d87-522b-49ba-a477-87db462f5137" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "2fdb43e9-3df3-437c-a973-feac682482b6" + "1786f9c2-084c-4114-836f-c9879d0bcebb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020956Z:2fdb43e9-3df3-437c-a973-feac682482b6" + "WESTUS:20200207T005304Z:1786f9c2-084c-4114-836f-c9879d0bcebb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:56 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fd94736-f2c9-4515-a4ff-3a0628d8d29b" + "88a82a71-ba39-4841-b01f-3f79a8db61ae" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:03 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAb1s=\"" + "\"AAAAAAAACRs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd4e9be4-aaf9-402d-8bad-cb3c140b68b1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6485e763-e1f9-4c55-82e4-fd71bfed2461" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "9957c2ba-d1cb-4365-86c4-267faa9941f8" + "1354cbc2-66b2-459e-be3d-77b3b2b3db76" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020957Z:9957c2ba-d1cb-4365-86c4-267faa9941f8" + "WESTUS:20200207T005304Z:1354cbc2-66b2-459e-be3d-77b3b2b3db76" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:57 GMT" - ], "Content-Length": [ - "586" + "594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -580,7 +580,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 } ], @@ -590,7 +590,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/CreateListUpdateDelete.json index 3ad2d6e33ceb..2c39e107cda1 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b82b89f3-1d40-49af-a89f-653b895e2272" + "bb46cd5e-ad94-4072-b3e6-8c1bf39db55c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "adb51d09-4a92-4566-8d6a-4414c882123c", - "47bdfd54-eabc-442c-b021-65597dd46cd4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2b5b343e-43c4-4d7d-ad86-b138f4ed816a", + "a1481f3d-9ee9-4a83-9409-3ec42f22c34b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "163644f8-96cc-4c42-b17a-e6d451de6316" + "f58cb1e0-895e-46f8-93a2-323b6f5dcc67" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020949Z:163644f8-96cc-4c42-b17a-e6d451de6316" + "WESTUS:20200207T005255Z:f58cb1e0-895e-46f8-93a2-323b6f5dcc67" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:48 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f18439dc-baef-416d-a47e-fe393142ca92" + "9f748903-e113-4ae8-9932-9e72cfdc16d8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f8f2856-a99e-4423-8ebe-c3a976459716" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "97f65ce2-d94a-4f9b-a3df-15577efc133a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "1eb5af32-8b84-491b-90f7-34606970c4da" + "045c0788-d8ba-4935-8269-b3f372ca2b6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020949Z:1eb5af32-8b84-491b-90f7-34606970c4da" + "WESTUS:20200207T005255Z:045c0788-d8ba-4935-8269-b3f372ca2b6f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:48 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb7bdd64-2765-4e7d-b366-c021ef1f0b49" + "53158f33-4ff8-46c3-9c41-72fd190edd0c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6761669f-5e80-4fa8-ab78-f126ccdf1a70" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3f2fe4b1-d35d-42ce-9ea0-bde495ac7770" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "91d8f7a9-423b-478d-af83-2380c17d2707" + "97f19359-69ac-443d-bf91-12dd3874ef70" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020949Z:91d8f7a9-423b-478d-af83-2380c17d2707" + "WESTUS:20200207T005256Z:97f19359-69ac-443d-bf91-12dd3874ef70" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:48 GMT" - ], "Content-Length": [ - "1281" + "1303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,26 +199,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL25ld3Byb2R1Y3Q5NTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription5078\",\r\n \"terms\": \"productTerms6393\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"displayName\": \"productName9357\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription4694\",\r\n \"terms\": \"productTerms5001\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"displayName\": \"productName5793\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c06cfdfa-283b-433f-a57f-7757659e9246" + "15edf512-6822-4e4b-bca6-91e646362859" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,38 +231,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcUE=\"" + "\"AAAAAAAACUg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c2f1728-d5c3-4a37-94f9-96cb021722da" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0eaa8531-3910-4e13-ae0e-5fc6c707fa7d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "8150aa82-0ccc-43ed-8fca-8127a3d705cc" + "890dc73c-57a5-46e6-a717-cc4cf959e380" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020950Z:8150aa82-0ccc-43ed-8fca-8127a3d705cc" + "WESTUS:20200207T005257Z:890dc73c-57a5-46e6-a717-cc4cf959e380" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:49 GMT" - ], "Content-Length": [ - "1054" + "1070" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,62 +271,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7868\",\r\n \"properties\": {\r\n \"displayName\": \"productName9357\",\r\n \"description\": \"productDescription5078\",\r\n \"terms\": \"productTerms6393\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct9504\",\r\n \"properties\": {\r\n \"displayName\": \"productName5793\",\r\n \"description\": \"productDescription4694\",\r\n \"terms\": \"productTerms5001\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL25ld3Byb2R1Y3Q5NTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67038622-4b97-47a2-a8d4-6e8d384425f7" + "5e2e5023-ae6c-40b3-9de2-5e008df759ee" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcUE=\"" + "\"AAAAAAAACUg=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fc3b3d3-b83c-4b97-8f77-4608dd5a5583" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "96f2025e-7992-479e-adfd-89f9e35a8401" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "7fa7261e-2823-42dd-889e-17dcdaaf29b5" + "b1768b2f-734d-412e-9b15-307c5bec6d7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020950Z:7fa7261e-2823-42dd-889e-17dcdaaf29b5" + "WESTUS:20200207T005257Z:b1768b2f-734d-412e-9b15-307c5bec6d7c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:49 GMT" - ], "Content-Length": [ "0" ], @@ -338,58 +338,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL25ld3Byb2R1Y3Q5NTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "728c8791-a43c-4835-9b4b-c7d9de2d5b4d" + "2551caff-faae-4fb6-9676-ed48d3874ad6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcUY=\"" + "\"AAAAAAAACU0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d82da88-4430-4dfe-a2f0-c9987b3ddfa2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b6ae6f36-0b2a-48c4-b3ea-a8257a5f0b3d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11991" ], "x-ms-correlation-request-id": [ - "85e2d7b3-b672-4f81-b244-e0a40ef597f3" + "e82f623d-eb04-4aff-a743-9a89264e1a5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020951Z:85e2d7b3-b672-4f81-b244-e0a40ef597f3" + "WESTUS:20200207T005258Z:e82f623d-eb04-4aff-a743-9a89264e1a5d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:50 GMT" - ], "Content-Length": [ "0" ], @@ -401,64 +401,64 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL25ld3Byb2R1Y3Q5NTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription662\",\r\n \"terms\": \"productTerms6105\",\r\n \"displayName\": \"productName6960\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription1728\",\r\n \"terms\": \"productTerms6533\",\r\n \"displayName\": \"productName1936\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ba44331c-b68b-46dc-9137-42f42a8d1fc8" + "98d44a76-15d8-4af9-bc0f-2aefde75e4af" ], "If-Match": [ - "\"AAAAAAAAcUE=\"" + "\"AAAAAAAACUg=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "145" + "146" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1b8ae1d-4a89-4e50-92cb-37bc6104289f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bacf1a1c-da5d-42ee-b11f-6435f0574fae" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "6d1f7421-9557-4e5b-a748-9490b430aeab" + "43715334-23d7-4241-88a1-71e8fb0ff7a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020950Z:6d1f7421-9557-4e5b-a748-9490b430aeab" + "WESTUS:20200207T005257Z:43715334-23d7-4241-88a1-71e8fb0ff7a0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:49 GMT" - ], "Expires": [ "-1" ] @@ -467,60 +467,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL25ld3Byb2R1Y3Q5NTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c22aa7a-81e1-4041-a289-622611633773" + "676e7878-690f-4a3f-aaa6-27f2e9ac7de5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcUY=\"" + "\"AAAAAAAACU0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "817dd8cc-e249-4189-9954-38cf8e3b712f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "df385334-b51e-40da-8fb2-ba32fc3d598c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "a9de5498-6728-4097-bda6-2e7ff6c3ccca" + "3f3f2a9c-dac8-4432-93fd-548550cb3ad9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020950Z:a9de5498-6728-4097-bda6-2e7ff6c3ccca" + "WESTUS:20200207T005257Z:3f3f2a9c-dac8-4432-93fd-548550cb3ad9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:49 GMT" - ], "Content-Length": [ - "538" + "547" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7868\",\r\n \"properties\": {\r\n \"displayName\": \"productName6960\",\r\n \"description\": \"productDescription662\",\r\n \"terms\": \"productTerms6105\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct9504\",\r\n \"properties\": {\r\n \"displayName\": \"productName1936\",\r\n \"description\": \"productDescription1728\",\r\n \"terms\": \"productTerms6533\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL25ld3Byb2R1Y3Q5NTA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3723a167-e74d-4aad-b103-b11dc5d2a432" + "05a34c07-5169-4885-9449-54c85e0f2f4d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bea2f507-76b8-4ef2-8777-294305b93b4c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4e36a7c5-15aa-43fb-b694-3e08d449c57b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11990" ], "x-ms-correlation-request-id": [ - "b4182b3a-2393-445d-b00f-c97b28e04f04" + "57248ed5-5995-4f8c-bf96-325f6c28b80c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020951Z:b4182b3a-2393-445d-b00f-c97b28e04f04" + "WESTUS:20200207T005259Z:57248ed5-5995-4f8c-bf96-325f6c28b80c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:50 GMT" - ], "Content-Length": [ "83" ], @@ -596,57 +596,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6dbb0ba3-8b84-4311-aea8-86b3fa6c6152" + "b46c88bf-9a8f-4ada-97f9-803c48739894" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08cf24b3-7035-4829-8282-4250eefd51a8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bb287ae3-a216-41e4-afce-117e2319988e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "77e124c4-4260-4f47-97ad-b5eb5a34d722" + "95a7a9e5-1798-4deb-a9b7-b7ae650d6aa7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020950Z:77e124c4-4260-4f47-97ad-b5eb5a34d722" + "WESTUS:20200207T005257Z:95a7a9e5-1798-4deb-a9b7-b7ae650d6aa7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:49 GMT" - ], "Content-Length": [ - "866" + "898" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,61 +655,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7868\",\r\n \"properties\": {\r\n \"displayName\": \"productName6960\",\r\n \"description\": \"productDescription662\",\r\n \"terms\": \"productTerms6105\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct9504\",\r\n \"properties\": {\r\n \"displayName\": \"productName1936\",\r\n \"description\": \"productDescription1728\",\r\n \"terms\": \"productTerms6533\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2019-01-01&%24skip=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8lMjR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAxJiUyNHNraXA9MQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDEmJTI0c2tpcD0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48690111-3446-415e-806c-bf8b65e532aa" + "43f8a5f6-a570-41b7-92b5-bc24315d9f8b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87b22ddd-5743-4eae-afe3-aa5a2a184a32" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cc681c40-7284-4e89-8997-7a34f4b87c77" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11993" ], "x-ms-correlation-request-id": [ - "37248caa-8042-4d16-91e5-284202c23c62" + "5362464d-1815-4170-992b-ffdb74de5f96" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020950Z:37248caa-8042-4d16-91e5-284202c23c62" + "WESTUS:20200207T005258Z:5362464d-1815-4170-992b-ffdb74de5f96" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:49 GMT" - ], "Content-Length": [ - "894" + "916" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,61 +718,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2019-01-01&%24skip=2\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?%24top=1&api-version=2019-01-01&%24skip=2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2019-01-01&%24skip=2", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8lMjR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAxJiUyNHNraXA9Mg==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?%24top=1&api-version=2019-01-01&%24skip=2", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDEmJTI0c2tpcD0y", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81896052-00d1-4804-8e60-1e3ab582cd58" + "4670b4a4-8d36-49f6-a16f-99e84579a071" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e47a180e-41f3-4331-9dae-f4e25fe53744" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8e909db1-3398-4230-b2a5-cb7da144ee47" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11992" ], "x-ms-correlation-request-id": [ - "28f7be70-6759-4bfb-b968-b1e223589d29" + "deff15b7-68a5-4b7a-a684-478637678359" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020951Z:28f7be70-6759-4bfb-b968-b1e223589d29" + "WESTUS:20200207T005258Z:deff15b7-68a5-4b7a-a684-478637678359" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:50 GMT" - ], "Content-Length": [ - "656" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -781,125 +781,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?deleteSubscriptions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL25ld3Byb2R1Y3Q5NTA0P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28c73a46-36df-4067-b2c7-634ea6f97638" + "80f8911b-29b7-4260-9cfb-279e38487be6" ], "If-Match": [ - "\"AAAAAAAAcUY=\"" + "\"AAAAAAAACU0=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad718e86-02e3-4c39-adba-fd822d33aa89" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6a74b330-508f-4f7f-900f-9f8addd51608" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "59ecb00a-6e71-4d56-9914-9b99d38a2154" + "2ef2c990-609a-4534-ae4c-f12f9139bb53" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020951Z:59ecb00a-6e71-4d56-9914-9b99d38a2154" + "WESTUS:20200207T005258Z:2ef2c990-609a-4534-ae4c-f12f9139bb53" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:50 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?deleteSubscriptions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/newproduct9504?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL25ld3Byb2R1Y3Q5NTA0P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90454fbc-d41a-47ac-a0a3-bd1699b4f400" + "8083bb65-7b58-46ab-8c44-31d23e3afcf7" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f171a109-ec3b-403b-9ea1-12b393a1112b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0e30dd25-f392-4aef-ace2-5d55035b595a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "0304353a-ead7-41f8-9017-e784c3e93506" + "f84ffa84-0f37-457f-9551-e6e6858adf18" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020951Z:0304353a-ead7-41f8-9017-e784c3e93506" + "WESTUS:20200207T005259Z:f84ffa84-0f37-457f-9551-e6e6858adf18" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:50 GMT" - ], "Expires": [ "-1" ] @@ -910,13 +910,13 @@ ], "Names": { "CreateListUpdateDelete": [ - "newproduct7868", - "productName9357", - "productDescription5078", - "productTerms6393", - "productName6960", - "productDescription662", - "productTerms6105" + "newproduct9504", + "productName5793", + "productDescription4694", + "productTerms5001", + "productName1936", + "productDescription1728", + "productTerms6533" ] }, "Variables": { @@ -924,7 +924,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/GroupsListAddRemove.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/GroupsListAddRemove.json index 417983465eef..5cb9e72ceac2 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/GroupsListAddRemove.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/GroupsListAddRemove.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2e3fd6b3-ee44-4cee-95f1-1404e4da7d4b" + "c71170a7-2c79-4aea-a635-8294a12a3e17" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:52 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f32f37b-9719-40d6-9d3b-30cb4c63bd93", - "85c4bf90-8d36-47a5-afad-239e7771c3a9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ed867b81-0d3a-4b41-88d5-0f6c9c4582a5", + "69ac01d5-e2f9-4305-a6d8-4b12ff2fcc45" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "8b2fe635-dc5a-4975-977b-916b9749d579" + "d0f6d7a6-5b9e-4b0b-a8de-4522b61d4cb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020945Z:8b2fe635-dc5a-4975-977b-916b9749d579" + "WESTUS:20200207T005252Z:d0f6d7a6-5b9e-4b0b-a8de-4522b61d4cb1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:45 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53d6e408-7c9d-4574-b63e-c1ac3d6cb9b4" + "4f6ddfa2-ce57-4f42-8849-076fe6c9749e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:52 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "921d7d7d-b7e3-498a-998c-949809e9f2db" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "52812722-3907-4505-a51d-cd2c90ca80cd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "a5e00823-53fd-4f15-ad97-90ec58c932a8" + "6e6a209a-5984-4c06-996a-5dfa3f7e54fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020945Z:a5e00823-53fd-4f15-ad97-90ec58c932a8" + "WESTUS:20200207T005252Z:6e6a209a-5984-4c06-996a-5dfa3f7e54fb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:45 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzPyRmaWx0ZXI9bmFtZSUyMGVxJTIwJ1N0YXJ0ZXInJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9cfe8fd-7325-4ce5-8962-008ed2305ff7" + "bd659d24-8527-437b-a35a-ba1828473ace" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d8336a1-5b95-42d1-8a56-b07b4276389e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6f8fe881-93e9-4397-a812-f9de3ddd2bd8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-correlation-request-id": [ - "eedf76a2-568f-4c89-a086-9eb17106c13a" + "c1fdf978-57b7-4adb-86e6-d37db1c6a2ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020946Z:eedf76a2-568f-4c89-a086-9eb17106c13a" + "WESTUS:20200207T005253Z:c1fdf978-57b7-4adb-86e6-d37db1c6a2ce" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:45 GMT" - ], "Content-Length": [ - "647" + "661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "290ea1b4-5f2f-42fe-a85a-1e212826f17c" + "a6ab5fa8-c980-4751-8b32-17c1b028b060" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7cc5d4a-ccf0-45e9-b542-bdafb50bad66" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b9b5e631-02f0-4958-a01f-f72ee5392048" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-correlation-request-id": [ - "5c6e7e10-dad2-427f-814c-c130a8dae443" + "379d15d9-0f82-4a7b-9f89-545c9e5f4835" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020946Z:5c6e7e10-dad2-427f-814c-c130a8dae443" + "WESTUS:20200207T005253Z:379d15d9-0f82-4a7b-9f89-545c9e5f4835" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:46 GMT" - ], "Content-Length": [ - "1874" + "1913" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e7d2f97-4751-423b-abaf-c3f13801eb17" + "3a4259eb-93b0-40fb-bdda-b60059b420a2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aeca90ca-f608-451b-b35a-433327474937" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "937721a2-6704-4ae3-bcc6-3053d50629ff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-correlation-request-id": [ - "913a195c-186d-4938-8d0e-4043a404af86" + "fdda76ae-9d34-4092-baf9-05800a262f03" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020946Z:913a195c-186d-4938-8d0e-4043a404af86" + "WESTUS:20200207T005254Z:fdda76ae-9d34-4092-baf9-05800a262f03" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:46 GMT" - ], "Content-Length": [ - "1258" + "1289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,61 +325,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef2590b6-c6a7-4fe5-ae47-179697fada31" + "6b10c560-b8fa-4c37-bc4d-afb5e072b6d0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ae7d96a-f763-4b67-a58d-adf221e1576f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7e700de0-67b7-4fb7-9b30-79d1776b4c71" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-correlation-request-id": [ - "c023dbb7-0a6a-4c77-8407-16b346a4132b" + "167103c9-b580-43f9-8169-7f41d8055a61" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020947Z:c023dbb7-0a6a-4c77-8407-16b346a4132b" + "WESTUS:20200207T005254Z:167103c9-b580-43f9-8169-7f41d8055a61" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:47 GMT" - ], "Content-Length": [ - "1874" + "1913" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,64 +388,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/guests?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3Vlc3RzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/guests?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9d95681-0264-4e95-854d-d1970e8fbe5e" + "0a8810e6-38e3-4231-9afd-7daf8ef3aa87" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAACNk=\"" + "\"AAAAAAAACIA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dff48fe9-9a64-4735-a3ca-29186346e5a7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4c922e07-139d-4c37-9e32-12f8022ba080" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-correlation-request-id": [ - "4fb397cf-52f4-4b12-9289-fa971afaa173" + "01ca6bc9-923e-4ff3-8ef3-e7fa1379a903" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020946Z:4fb397cf-52f4-4b12-9289-fa971afaa173" + "WESTUS:20200207T005253Z:01ca6bc9-923e-4ff3-8ef3-e7fa1379a903" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:46 GMT" - ], "Content-Length": [ - "539" + "547" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,124 +454,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/guests?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL2d1ZXN0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0cd9484-2a92-4c61-b5aa-c7bb634c123b" + "6afedae1-4029-4cfe-8a1d-773b1ede9cc1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfa7ed71-a446-4e63-a36c-c6fd737cbc54" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ad850925-49bd-4bf1-be0c-c402052c2362" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "f8b7c0f3-80be-43ab-a935-e4301cf4a9eb" + "0ed4f6af-8620-485f-97fa-c1df1c183d23" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020946Z:f8b7c0f3-80be-43ab-a935-e4301cf4a9eb" + "WESTUS:20200207T005254Z:0ed4f6af-8620-485f-97fa-c1df1c183d23" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:46 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/guests?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL2d1ZXN0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60a1fd4d-2324-4621-a2a6-b041f993ab4b" + "4b06c02c-45d0-4d00-b684-b952438c5f16" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:54 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAACNk=\"" + "\"AAAAAAAACIA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f555e0e-b641-4e6f-bfdd-444ddc5b9c36" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "57fd68fb-80e3-441f-97db-537196a4420f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "12aee182-39e8-4e66-98b9-203c696d5cde" + "672f69cc-a49a-4592-8815-e223c7ebe599" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020947Z:12aee182-39e8-4e66-98b9-203c696d5cde" + "WESTUS:20200207T005254Z:672f69cc-a49a-4592-8815-e223c7ebe599" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:47 GMT" - ], "Content-Length": [ - "565" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -580,7 +580,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 } ], @@ -590,7 +590,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/SubscriptionsList.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/SubscriptionsList.json index 957c2bfbd3d2..9e30c04d0999 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/SubscriptionsList.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ProductTests/SubscriptionsList.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "333b82da-6a43-4013-8dec-b1ee4259610a" + "93e2a24a-6ca0-450c-9ba5-6ffdd75b7eca" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:59 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aba2141f-aff0-4db3-840b-0c3ea83ecc46", - "f7ba81dc-0aa7-4171-811d-c391e7416819" + "8a54f52c-808d-48b0-a295-f96216ca6f3f", + "0fad319d-ba6a-46c4-9290-b91e22472398" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1194" ], "x-ms-correlation-request-id": [ - "a07616fa-28ec-46df-9c98-d88161a38db0" + "9fbbc361-e0c8-4ca7-b850-1101b2892121" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020952Z:a07616fa-28ec-46df-9c98-d88161a38db0" + "WESTUS:20200207T005300Z:9fbbc361-e0c8-4ca7-b850-1101b2892121" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:52 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "870bab17-6ea7-47f3-8121-95e3a23491f1" + "b5284580-268f-40a3-b3fd-cd15505d25d1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:59 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d4cc288-0515-4c11-8d86-630cee69e007" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7e33c8fc-130f-4d3a-b8af-f00132b4720a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-correlation-request-id": [ - "4a7137c2-47ac-4c4c-9410-6a75eb3e70b2" + "0f49add8-2b68-4cdb-9f56-d072a6bfaf27" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020953Z:4a7137c2-47ac-4c4c-9410-6a75eb3e70b2" + "WESTUS:20200207T005300Z:0f49add8-2b68-4cdb-9f56-d072a6bfaf27" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:52 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzPyRmaWx0ZXI9bmFtZSUyMGVxJTIwJ1N0YXJ0ZXInJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3576b871-0711-49f8-833f-f44a02f5843e" + "812ef6b7-1fc2-4519-8303-17e38f85f7e7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76c729be-6cf5-4148-b060-9b14748425b0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "69413e7a-f951-40fc-b917-d55559ed7d0f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11990" ], "x-ms-correlation-request-id": [ - "25c86014-0073-47e9-9f37-e8479b24c83c" + "818d60ed-14e9-4c14-8059-777a7abcbec2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020953Z:25c86014-0073-47e9-9f37-e8479b24c83c" + "WESTUS:20200207T005300Z:818d60ed-14e9-4c14-8059-777a7abcbec2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:52 GMT" - ], "Content-Length": [ - "647" + "661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/subscriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d0ad763-8bde-4731-bd8f-f5a2b82adb27" + "2a9c5540-b147-435d-b088-35943b02f34e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:00 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6ef67fe-0dd7-4e49-a818-42aa888cf1b5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "03028cd1-ee9e-47da-9fd6-c289fa11d392" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11989" ], "x-ms-correlation-request-id": [ - "e866817b-40c7-4e49-acbc-36ae1b7cb1e7" + "746c79e4-5758-4128-9ba4-e4801a3e3e5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020953Z:e866817b-40c7-4e49-acbc-36ae1b7cb1e7" + "WESTUS:20200207T005300Z:746c79e4-5758-4128-9ba4-e4801a3e3e5a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:52 GMT" - ], "Content-Length": [ - "1177" + "1216" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,7 +262,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5e3cad2f4acd5f008a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:19:59.283Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"f01011258be443508acefd69d070c579\",\r\n \"secondaryKey\": \"83fe51906f2f4d4281111837d735a372\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 } ], @@ -272,7 +272,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PropertiesTest/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PropertiesTest/CreateListUpdateDelete.json index 12a704b3d3b2..afd24b5a0d9f 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PropertiesTest/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/PropertiesTest/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d07b4a10-d944-4e53-9775-577cba1508e4" + "647ea47a-d64a-449b-937e-ac2ec8cbfd6f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,2202 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:15:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAABp8c=\"" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14d71461-a613-404a-8b54-3cb8ce6f51f2", + "27d630f8-8476-423d-8262-06df513484e4" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7004bcca-2d14-4363-ba69-b47e62184a6d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T001556Z:7004bcca-2d14-4363-ba69-b47e62184a6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp8c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:16:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1c97eb37-fa17-4bb0-ae71-a0188b66469b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "36b04d2e-4368-4611-825f-55462333e39b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T001656Z:36b04d2e-4368-4611-825f-55462333e39b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:17:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "376dbc06-bc32-442b-9cef-2e84db770833" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a88bfb02-ecde-41cf-ba1a-11daa5efeedf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T001757Z:a88bfb02-ecde-41cf-ba1a-11daa5efeedf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:18:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0b1490f1-7108-4590-a4e6-55b80354b53a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "19d42c13-a3f7-4d8b-8570-ac2eaec641aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T001857Z:19d42c13-a3f7-4d8b-8570-ac2eaec641aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:19:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8b717fe9-3d88-49fa-9f0b-6bb4df60853f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "95a0050c-2be4-4366-a635-5769484261b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T001958Z:95a0050c-2be4-4366-a635-5769484261b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:20:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5e6d2911-ed0c-482e-a508-f8f480e39311" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "44db9825-a555-424a-92af-a37fc640b57b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002058Z:44db9825-a555-424a-92af-a37fc640b57b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:21:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "89e18c29-cd61-427f-929f-318f5e0ec810" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "56a7a5be-3403-417f-be57-ec3ea134dcda" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002158Z:56a7a5be-3403-417f-be57-ec3ea134dcda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:22:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "48bc12e6-13ac-4b9e-9dfe-b189a164cc66" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "fdbe6c84-6422-4e81-9a14-970dd493c8ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002258Z:fdbe6c84-6422-4e81-9a14-970dd493c8ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:23:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c97b5426-818c-4dde-903c-5b1c16b3d0c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8a89ba93-d53c-4e7b-a749-c8fa605577b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002358Z:8a89ba93-d53c-4e7b-a749-c8fa605577b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:24:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b7e8a13-ed0b-4b18-95da-6fe74b00b310" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6c5bf76c-b32f-4968-a545-7ef420689faa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002459Z:6c5bf76c-b32f-4968-a545-7ef420689faa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:25:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e8aec3d-e62c-4f6f-b0a4-685342d54837" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "17b6e80d-6860-4138-99f0-5af30cdba81e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002559Z:17b6e80d-6860-4138-99f0-5af30cdba81e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:26:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "21dff0fb-a39f-4409-bd63-4b6d5a9f297f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7db9569f-0529-4a67-8583-e6a4423b9b8f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002659Z:7db9569f-0529-4a67-8583-e6a4423b9b8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:28:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "968874f8-46fd-4594-9abe-b01f5178105e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "fb7d0654-ef22-4e6c-bd8f-db26e9d7f847" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002800Z:fb7d0654-ef22-4e6c-bd8f-db26e9d7f847" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:29:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "18b1f54f-549f-43f7-9576-a046344a38ec" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "bfdb80cf-fbb2-45b8-9407-164ad5c104a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T002900Z:bfdb80cf-fbb2-45b8-9407-164ad5c104a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:30:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ef1f5da8-0f57-43fc-90f7-cbe640a4489d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ee7590c2-4450-405f-9afe-4171f6729632" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003001Z:ee7590c2-4450-405f-9afe-4171f6729632" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:31:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d557c878-be19-4ffc-b4c9-bd4d2090d0e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "3ea693b6-8a8a-4009-83d2-4750087e72fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003101Z:3ea693b6-8a8a-4009-83d2-4750087e72fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:32:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9e2da39a-702d-4bd1-aecd-562c968b5dbf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "95228785-4cb2-406c-b9b3-3bd727652cbf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003202Z:95228785-4cb2-406c-b9b3-3bd727652cbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:33:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d5f7d7c0-73ed-457d-b8e3-b2b3c9365134" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e9c5d60c-c14b-4ddb-a4de-91214734f54c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003302Z:e9c5d60c-c14b-4ddb-a4de-91214734f54c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:34:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7df71c87-b96a-4683-8dc7-4ff140828fe7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "cdd2c47a-04e9-4f9e-b0a3-33450a403b14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003402Z:cdd2c47a-04e9-4f9e-b0a3-33450a403b14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:35:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd6c98b5-55d6-4023-b92f-36ff2a7a254c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "2d965886-9b52-40a0-a994-949208f50963" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003502Z:2d965886-9b52-40a0-a994-949208f50963" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:36:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d58dc7e3-12b3-4faa-be06-47962cc95108" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "9e46b3bf-eb13-4f88-8ad2-f027c89502c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003603Z:9e46b3bf-eb13-4f88-8ad2-f027c89502c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:37:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b02947c9-9fad-4d61-8ea0-f5a29f2d772c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "81fbb7f4-ad18-4a28-93da-59aa4efb31fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003703Z:81fbb7f4-ad18-4a28-93da-59aa4efb31fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:38:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8e82ec03-2eff-49c4-97b3-cc64650b4870" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "10563aa1-beba-4c08-8ea5-ac8068b45921" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003804Z:10563aa1-beba-4c08-8ea5-ac8068b45921" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:39:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e453936a-ad9a-4f09-8566-0550b492eb60" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "052f84bb-6b9b-4b30-9c55-7bf1664ece4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T003904Z:052f84bb-6b9b-4b30-9c55-7bf1664ece4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:40:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "35a5b04b-4d83-43a7-a710-112975f52a24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "015e26ab-616b-44c0-b3a2-512f9cd89ecf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004004Z:015e26ab-616b-44c0-b3a2-512f9cd89ecf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:41:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c01e46ed-5561-4971-978f-fbb2e6a5bf13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "94e01edd-d58f-4da7-a16e-5d9f6498f0e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004105Z:94e01edd-d58f-4da7-a16e-5d9f6498f0e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:42:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a045fe19-b823-49ac-8b9a-d710c94dc844" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "738e393f-0fe2-48cf-b11c-94eb213cddbb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004205Z:738e393f-0fe2-48cf-b11c-94eb213cddbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:43:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01ec9a1e-116e-4561-91c1-a9f1a2b566e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "429f1def-b554-42ca-8b2d-6fa4405b2a1d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004305Z:429f1def-b554-42ca-8b2d-6fa4405b2a1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:44:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85a49994-cec9-4615-8307-ae35baa2f00c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "8fc49b94-5961-4bd4-9d10-d5ecda0d2efd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004406Z:8fc49b94-5961-4bd4-9d10-d5ecda0d2efd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:45:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6ed3465-6faa-4e26-8642-8f22535a80d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "aa990b60-da92-4327-bcde-0b59d4774fd2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004506Z:aa990b60-da92-4327-bcde-0b59d4774fd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:46:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "936ead49-92a6-4c07-a716-5adb855a3341" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "1b93ecd5-0ec7-4fec-85e4-41d8e12ef72d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004607Z:1b93ecd5-0ec7-4fec-85e4-41d8e12ef72d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:47:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c4185f4-dd87-4bf8-b213-1e53980d6d7e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "6440a333-09a5-43ab-abe2-d5be83d5a7bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004707Z:6440a333-09a5-43ab-abe2-d5be83d5a7bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:48:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb6cdd17-709f-4797-8fee-740cbf68a8f6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "8c721ee6-4963-4254-8ce1-d1906b4c76fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004807Z:8c721ee6-4963-4254-8ce1-d1906b4c76fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:49:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c887eb03-9ea1-48c4-ac48-929d5e691ec7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "85641301-b55c-413a-9d0c-48d98218ba03" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T004907Z:85641301-b55c-413a-9d0c-48d98218ba03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:50:07 GMT" + ], "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAFuRAQ=\"" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a50fac34-0ef3-48dc-bb8c-eb9f3135cc09", - "8519017d-964f-4995-9f63-782e16044a40" + "c5660133-9c62-4e66-8455-92f24ea671e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "51a8a75f-a4ef-4691-8a41-a48adad739db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T005008Z:51a8a75f-a4ef-4691-8a41-a48adad739db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 00:51:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "45f32962-3543-4904-974a-30eeaaeb3cdd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "0cc84e40-9e0b-432f-b485-16fc611f393b" + "1cc7bb69-40ab-4f5e-a59c-14b8869fa2db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021610Z:0cc84e40-9e0b-432f-b485-16fc611f393b" + "WESTUS:20200207T005108Z:1cc7bb69-40ab-4f5e-a59c-14b8869fa2db" ], "X-Content-Type-Options": [ "nosniff" ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/operationresults/Y2VudHJhbHVzOnNka3Rlc3RzZXJ2aWNlMjAxOTAxMDFfQWN0X2VkMGNjODQz?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL29wZXJhdGlvbnJlc3VsdHMvWTJWdWRISmhiSFZ6T25Oa2EzUmxjM1J6WlhKMmFXTmxNakF4T1RBeE1ERmZRV04wWDJWa01HTmpPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Thu, 11 Apr 2019 02:16:09 GMT" + "Fri, 07 Feb 2020 00:52:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bda21a7-f3bd-4ee6-937d-a03dd2dbda5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5cb07f78-e316-4d41-8f05-e30fcb2ab389" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T005208Z:5cb07f78-e316-4d41-8f05-e30fcb2ab389" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +2233,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d11f5128-48da-4d65-ae26-be6a2bbb5505" + "62b0916a-259c-442d-8f56-2e8820809b0c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:08 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2fc247e8-c58f-4db9-b3c1-6fd87d391612" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4a546d6d-61f3-4cf1-9e00-14f4a76559f4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11998" ], "x-ms-correlation-request-id": [ - "5c94fd15-86de-48c1-ae0a-c132bb115aa8" + "bba1ea62-42ed-40fc-85d8-8df34a709123" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021610Z:5c94fd15-86de-48c1-ae0a-c132bb115aa8" + "WESTUS:20200207T005208Z:bba1ea62-42ed-40fc-85d8-8df34a709123" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:09 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +2299,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/newproperty5064?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvbmV3cHJvcGVydHk1MDY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4307\",\r\n \"value\": \"propertyValue8292\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay6200\",\r\n \"value\": \"propertyValue1428\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9883a55c-1f34-46f5-a7c3-36b7773a09a7" + "7b1095d5-14b5-48d8-adbd-db281c2cc5c1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +2331,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcig=\"" + "\"AAAAAAAACQk=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "beff646e-553a-4d93-9708-14b894c7ed62" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "39e28368-5ce1-41d8-a3ea-71887e39238c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "41d84339-4247-4488-9eb0-29bb0eda43b5" + "4b42374e-d4f9-46e5-935f-4df422710194" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021611Z:41d84339-4247-4488-9eb0-29bb0eda43b5" + "WESTUS:20200207T005210Z:4b42374e-d4f9-46e5-935f-4df422710194" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:10 GMT" - ], "Content-Length": [ - "418" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,64 +2371,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5255\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4307\",\r\n \"value\": \"propertyValue8292\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/newproperty5064\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5064\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay6200\",\r\n \"value\": \"propertyValue1428\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/newproperty5064?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvbmV3cHJvcGVydHk1MDY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9126e77-f399-4d3d-991d-26687cf8434d" + "8525d61a-6b00-48f4-a405-ba48d5a9ead8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcig=\"" + "\"AAAAAAAACQk=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4ae01f2-3d1a-4d8e-8693-4312c16231c6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "74ee3347-0fd3-43b6-9993-b92a67e4872c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11997" ], "x-ms-correlation-request-id": [ - "3275169e-8cc2-4d31-828b-076959606577" + "87a12839-943d-4a45-8717-841ee484fe88" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021611Z:3275169e-8cc2-4d31-828b-076959606577" + "WESTUS:20200207T005210Z:87a12839-943d-4a45-8717-841ee484fe88" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:10 GMT" - ], "Content-Length": [ - "418" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,59 +2437,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5255\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4307\",\r\n \"value\": \"propertyValue8292\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/newproperty5064\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5064\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay6200\",\r\n \"value\": \"propertyValue1428\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/newproperty5064?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvbmV3cHJvcGVydHk1MDY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc1808c6-f83a-4bfb-a506-cb0896ef60f5" + "b9ef98f6-1f66-47c2-baf6-a7eab7accb9c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4515edde-b6c5-4082-a2a6-e2870d0d1bc9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2daf6ae8-abd1-4713-bbc0-9fb62e7734ac" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11995" ], "x-ms-correlation-request-id": [ - "440ab9ca-5958-4a82-b9c0-f63159bba38a" + "15423442-5824-405b-9a21-c56ca1364b52" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:440ab9ca-5958-4a82-b9c0-f63159bba38a" + "WESTUS:20200207T005213Z:15423442-5824-405b-9a21-c56ca1364b52" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:11 GMT" - ], "Content-Length": [ "84" ], @@ -341,22 +2504,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvc2VjcmV0cHJvcGVydHkxNzAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"secretPropertydisplay1184\",\r\n \"value\": \"secretPropertyValue2447\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"secretPropertydisplay5903\",\r\n \"value\": \"secretPropertyValue7963\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4034aaf3-0dd2-4638-8018-4b27248f80ae" + "4c9283e3-a5d0-4b16-8b29-b4bb62ce584a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,38 +2532,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:10 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcik=\"" + "\"AAAAAAAACQo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74638780-511e-40ec-aec6-1feab791dea7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3cd9a98f-39c2-40d6-9aba-c85d556f82fe" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "47aa5ea6-ffd9-4bca-ad0d-6698189f04a4" + "26bf1dbb-ceba-4aec-9e54-ce3c2c9e117e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021611Z:47aa5ea6-ffd9-4bca-ad0d-6698189f04a4" + "WESTUS:20200207T005211Z:26bf1dbb-ceba-4aec-9e54-ce3c2c9e117e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:10 GMT" - ], "Content-Length": [ - "455" + "463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -409,61 +2572,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty7319\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1184\",\r\n \"value\": \"secretPropertyValue2447\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty1700\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay5903\",\r\n \"value\": \"secretPropertyValue7963\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4061ded-a348-4c4d-beab-b63af4ed46fb" + "1b24bbfb-511b-4417-8a3b-bc2c2f901e58" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "955a13d5-8394-400b-ad71-6b2137244715" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "81cf3a0b-e60d-40d5-a8ca-c9bb28ee2f25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11996" ], "x-ms-correlation-request-id": [ - "4e9d7dab-89fb-4a59-bc41-c348e8c8b19b" + "ef3ba3ea-9358-40f8-a9b0-dda30f0ff86e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021611Z:4e9d7dab-89fb-4a59-bc41-c348e8c8b19b" + "WESTUS:20200207T005211Z:ef3ba3ea-9358-40f8-a9b0-dda30f0ff86e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:11 GMT" - ], "Content-Length": [ - "997" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,125 +2635,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5255\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4307\",\r\n \"value\": \"propertyValue8292\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty7319\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1184\",\r\n \"value\": \"secretPropertyValue2447\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/newproperty5064\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5064\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay6200\",\r\n \"value\": \"propertyValue1428\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty1700\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay5903\",\r\n \"value\": \"secretPropertyValue7963\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/newproperty5064?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvbmV3cHJvcGVydHk1MDY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31c6d6ad-f322-4033-83fe-13b68029e8c9" + "61d4091a-3acb-4bca-8689-ac4843a4ea0e" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ce44bbd-39ec-4bbf-9269-14e2f4ff2069" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1a1f89cc-39a1-4deb-a52d-c0da19b4d3c8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "c1f24e01-22c0-41a3-a74d-c42c3e6d8eb0" + "0c8e2d36-fc84-4d13-9e49-b2ec6f0f5289" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:c1f24e01-22c0-41a3-a74d-c42c3e6d8eb0" + "WESTUS:20200207T005213Z:0c8e2d36-fc84-4d13-9e49-b2ec6f0f5289" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/newproperty5064?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvbmV3cHJvcGVydHk1MDY0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9d566b2-3b30-4146-add0-c8fc34dc265a" + "203e9cbc-445f-44b4-b9f3-4b8ec3ee44f0" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64e292b3-005c-4187-838b-675ebf1c5b2b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "914039c4-291b-47df-9494-cda90953225b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14997" ], "x-ms-correlation-request-id": [ - "7869b94d-ef3d-4421-b2c0-00f0a200c3d9" + "4ce2ea46-7fa5-4f18-b184-680917ed9e42" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:7869b94d-ef3d-4421-b2c0-00f0a200c3d9" + "WESTUS:20200207T005215Z:4ce2ea46-7fa5-4f18-b184-680917ed9e42" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:12 GMT" - ], "Expires": [ "-1" ] @@ -599,58 +2762,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvc2VjcmV0cHJvcGVydHkxNzAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93cfffa0-0f60-4d41-b25c-153cee7c197f" + "ef2f405f-b8e6-448c-a757-a29a63bd9e56" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:13 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcik=\"" + "\"AAAAAAAACQo=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61c6dbce-ef46-4609-8999-f36b52331263" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "14be6f9b-bbb2-4f7c-80b2-eae54efb350d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11994" ], "x-ms-correlation-request-id": [ - "df2d0b8c-593c-4cc0-a84e-abe9bf2b9b90" + "7c329432-1774-4d68-9289-2bf0118aa5c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:df2d0b8c-593c-4cc0-a84e-abe9bf2b9b90" + "WESTUS:20200207T005214Z:7c329432-1774-4d68-9289-2bf0118aa5c4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:11 GMT" - ], "Content-Length": [ "0" ], @@ -662,25 +2825,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvc2VjcmV0cHJvcGVydHkxNzAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "089f646e-294d-4b87-94fb-da59e1da14d4" + "19590cbe-f887-4fc8-8901-0d0e075f40e6" ], "If-Match": [ - "\"AAAAAAAAcik=\"" + "\"AAAAAAAACQo=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -693,33 +2856,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0715a37b-73f2-499f-a63d-96f1f66039bc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4f3aa865-46f6-4e5d-97f2-776afcd0eb58" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "1fd6d50a-b1d6-45c7-a103-ad1239a4faa5" + "fd49b5be-eabe-4c1c-ae81-e435093a4663" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:1fd6d50a-b1d6-45c7-a103-ad1239a4faa5" + "WESTUS:20200207T005214Z:fd49b5be-eabe-4c1c-ae81-e435093a4663" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:11 GMT" - ], "Expires": [ "-1" ] @@ -728,60 +2891,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvc2VjcmV0cHJvcGVydHkxNzAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b44bbc6-2488-4c39-911c-2749db091022" + "4d63889c-4115-4a64-9141-7f14a662cd02" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcio=\"" + "\"AAAAAAAACQs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03f94ce6-6606-4428-a8c7-46a09f6a8dde" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "68c0e2a3-61f3-4554-9722-5196bf94cc60" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11993" ], "x-ms-correlation-request-id": [ - "1d5144cd-6e12-4ca7-8f28-5e6ba311fd45" + "03ccebe1-f91f-4c3a-ac0d-658fb136c350" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:1d5144cd-6e12-4ca7-8f28-5e6ba311fd45" + "WESTUS:20200207T005215Z:03ccebe1-f91f-4c3a-ac0d-658fb136c350" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:11 GMT" - ], "Content-Length": [ - "456" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -790,59 +2953,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty7319\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1184\",\r\n \"value\": \"secretPropertyValue2447\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty1700\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay5903\",\r\n \"value\": \"secretPropertyValue7963\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvc2VjcmV0cHJvcGVydHkxNzAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "177614d3-9f15-46a8-9ce0-be714b073a12" + "ebd86aeb-6342-4940-b28b-07fea2e0338a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "516557b5-5d69-4fda-a0a7-a35f1586302d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3ac8ced3-4e29-4c3c-ab2b-9b2cff49ba23" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11992" ], "x-ms-correlation-request-id": [ - "1b92ac3e-365c-49f2-94ee-5881c8f396e3" + "c6ef5713-25ef-442a-b189-af40bb36ee13" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:1b92ac3e-365c-49f2-94ee-5881c8f396e3" + "WESTUS:20200207T005215Z:c6ef5713-25ef-442a-b189-af40bb36ee13" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:12 GMT" - ], "Content-Length": [ "84" ], @@ -857,121 +3020,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvc2VjcmV0cHJvcGVydHkxNzAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4126e01a-7e8c-46c7-8850-fe7b32c8be6a" + "5ea1576b-6848-4676-98ad-c5d0bc119865" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce657690-6b15-4406-9c28-03cd96a3ec9c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e1c9bff1-fca9-4d74-8cbf-0ef53b1e4184" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14998" ], "x-ms-correlation-request-id": [ - "89567256-319a-48af-ac62-4b37ff0ac8f7" + "0b50de93-318f-4f94-9848-983cfdccfe66" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:89567256-319a-48af-ac62-4b37ff0ac8f7" + "WESTUS:20200207T005215Z:0b50de93-318f-4f94-9848-983cfdccfe66" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:12 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/properties/secretproperty1700?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb3BlcnRpZXMvc2VjcmV0cHJvcGVydHkxNzAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "421d7a71-147d-41f0-8e84-e6ce5fe9031c" + "45e665fd-2c6f-4b42-b273-ee507b6c0fca" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3598562-02f6-4736-89c5-14d54132d143" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "eee9bd84-60d0-4975-9dc2-e4b1d2e83231" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14992" + "14996" ], "x-ms-correlation-request-id": [ - "64794cf3-e7a6-4402-8138-798894229335" + "85fc4e40-f988-427d-8549-5529e5d82195" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021612Z:64794cf3-e7a6-4402-8138-798894229335" + "WESTUS:20200207T005216Z:85fc4e40-f988-427d-8549-5529e5d82195" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:12 GMT" - ], "Expires": [ "-1" ] @@ -982,12 +3145,12 @@ ], "Names": { "CreateListUpdateDelete": [ - "newproperty5255", - "secretproperty7319", - "propertydisplay4307", - "propertyValue8292", - "secretPropertydisplay1184", - "secretPropertyValue2447" + "newproperty5064", + "secretproperty1700", + "propertydisplay6200", + "propertyValue1428", + "secretPropertydisplay5903", + "secretPropertyValue7963" ] }, "Variables": { @@ -995,7 +3158,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/RegionTests/List.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/RegionTests/List.json index e1d20e583545..1d6d668ef5a7 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/RegionTests/List.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/RegionTests/List.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "103b8f17-0a3d-4845-9811-96ac88818f7a" + "c10e29f2-8651-44b5-ad1b-2e87f2149fbf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:03 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74efd664-0812-4030-b282-628a6cba8acc", - "fb9d3592-c396-400d-8e76-a0e54ef7c4ae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0369970a-68df-4511-b401-f43ea738e31d", + "85207288-21fb-4aab-86eb-77ac54697008" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "7d1dd20b-b2a7-4af3-8a30-3be04f7587a1" + "3c638bcd-c6ea-49a4-ae65-3617b929180d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021614Z:7d1dd20b-b2a7-4af3-8a30-3be04f7587a1" + "WESTUS:20200207T010603Z:3c638bcd-c6ea-49a4-ae65-3617b929180d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:13 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40908795-2ede-4f0d-bd25-d3a437dd78b9" + "41e1aa21-b9ef-4356-824d-65c5bce34e7a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:03 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7585c79-b94a-4242-960f-776c297543dd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e5ed6f23-a467-40e0-b700-990cc1bfd83a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "5383a3e3-9a12-461a-94ce-14304f00f138" + "ef733c3d-2b55-4d1e-b909-b21b1ed7dab0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021614Z:5383a3e3-9a12-461a-94ce-14304f00f138" + "WESTUS:20200207T010604Z:ef733c3d-2b55-4d1e-b909-b21b1ed7dab0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:13 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/regions?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZWdpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/regions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlZ2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2049ec3-9126-4c6a-a8f8-add4bcd72a43" + "364c6f39-9c24-441b-88ec-d4b75272884b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "693a6d46-09a2-4d1f-a894-5f90ad6a7a2f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0ed50064-8ee4-4b14-82bf-12980687b9c2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "f3cc2753-e908-4b78-bada-b1b7ec0b8d5c" + "754b966d-7197-4876-87db-21aebd07a718" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021614Z:f3cc2753-e908-4b78-bada-b1b7ec0b8d5c" + "WESTUS:20200207T010604Z:754b966d-7197-4876-87db-21aebd07a718" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:13 GMT" - ], "Content-Length": [ "99" ], @@ -209,7 +209,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ReportTests/Query.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ReportTests/Query.json index 4f5cacdd98e9..990d686292ff 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ReportTests/Query.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ReportTests/Query.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d3d7c87-9172-427a-b8c1-b6a1f8b2243f" + "cf131bf5-fa0b-4ca2-b94e-cf5866966325" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:30 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c700d77b-c658-4e03-89e5-30115b7d332f", - "b6fe5277-3cb0-40df-a017-7e8a4d2eb54e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d596abcf-54e5-4059-b029-8b0c9723d5df", + "d17ac1f2-ea23-4179-9c8d-f1a194d1fe34" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "1a607417-9fbd-48c5-b595-3490b84e90e6" + "de1cfa6b-7db6-403e-82ef-4a753d91e599" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021615Z:1a607417-9fbd-48c5-b595-3490b84e90e6" + "WESTUS:20200207T015731Z:de1cfa6b-7db6-403e-82ef-4a753d91e599" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:14 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570d7a15-daf6-4b5f-b420-14b6bfff34a1" + "f973d6bf-e2d7-4688-b28d-942efeb1c612" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:31 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a15855a5-ff2e-49a2-b745-7fa3a5966b85" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c0b4fc16-e7b9-4a56-ae0a-7fe69d1fa351" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "cd2a9bf3-5335-4f4f-9860-0c8d416bd629" + "b2f131cc-f583-42bb-989f-0ecb779dbac7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021615Z:cd2a9bf3-5335-4f4f-9860-0c8d416bd629" + "WESTUS:20200207T015731Z:b2f131cc-f583-42bb-989f-0ecb779dbac7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:15 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byApi?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5QXBpPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "147afda4-7730-4a9e-a2a9-a6bdf2b56f73" + "94e2c897-c068-4478-af32-3c6a89c93017" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:31 GMT" + ], "Pragma": [ "no-cache" ], + "ETag": [ + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c315dc09-3c70-45d0-a5a7-2ac77fcd838b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0ffceb14-c748-4075-b97c-249dfd675566" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "a9a47224-5f70-40f4-8a30-54619f1ea5d1" + "0c5b562f-39c5-4b79-8fff-5a150178a3f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021616Z:a9a47224-5f70-40f4-8a30-54619f1ea5d1" + "WESTUS:20200207T015731Z:0c5b562f-39c5-4b79-8fff-5a150178a3f5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:15 GMT" - ], "Content-Length": [ - "426" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +202,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Echo API\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"callCountSuccess\": 297,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 297,\r\n \"bandwidth\": 103767,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 117.12442760942761,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 72.732121885521892,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 803.14410000000009\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byGeo?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5R2VvPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68e70e09-0efa-45bd-baea-ec923947e81e" + "55890584-3cab-4874-8b54-375a5c14789b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:31 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd344f97-dbd4-4ea0-b20e-9600a4b34531" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "eb31dc9a-274a-4c9e-b3e3-07224f4d6681" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "2862e625-3bbc-435f-b204-26c245684d0e" + "82cf47c2-37a5-4a25-845a-449c1b55ce37" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021616Z:2862e625-3bbc-435f-b204-26c245684d0e" + "WESTUS:20200207T015732Z:82cf47c2-37a5-4a25-845a-449c1b55ce37" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:15 GMT" - ], "Content-Length": [ - "2627" + "1450" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +265,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"country\": \"US\",\r\n \"region\": \"CA\",\r\n \"zip\": \"0\",\r\n \"callCountSuccess\": 1,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 1,\r\n \"bandwidth\": 9082,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 1218.5258000000001,\r\n \"apiTimeMin\": 1218.5258000000001,\r\n \"apiTimeMax\": 1218.5258000000001,\r\n \"serviceTimeAvg\": 179.00400000000002,\r\n \"serviceTimeMin\": 179.00400000000002,\r\n \"serviceTimeMax\": 179.00400000000002\r\n },\r\n {\r\n \"country\": \"US\",\r\n \"region\": \"IL\",\r\n \"zip\": \"0\",\r\n \"callCountSuccess\": 50,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 50,\r\n \"bandwidth\": 14250,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 119.69407000000001,\r\n \"apiTimeMin\": 44.4615,\r\n \"apiTimeMax\": 840.3682,\r\n \"serviceTimeAvg\": 71.626626,\r\n \"serviceTimeMin\": 44.2085,\r\n \"serviceTimeMax\": 552.6203\r\n },\r\n {\r\n \"country\": \"US\",\r\n \"region\": \"TX\",\r\n \"zip\": \"0\",\r\n \"callCountSuccess\": 70,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 70,\r\n \"bandwidth\": 19900,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 113.87412714285715,\r\n \"apiTimeMin\": 44.3566,\r\n \"apiTimeMax\": 803.5901,\r\n \"serviceTimeAvg\": 77.615044285714291,\r\n \"serviceTimeMin\": 44.1133,\r\n \"serviceTimeMax\": 803.14410000000009\r\n },\r\n {\r\n \"country\": \"US\",\r\n \"region\": \"TX\",\r\n \"zip\": \"78201\",\r\n \"callCountSuccess\": 80,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 80,\r\n \"bandwidth\": 22880,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 102.58285125,\r\n \"apiTimeMin\": 44.3906,\r\n \"apiTimeMax\": 591.60070000000007,\r\n \"serviceTimeAvg\": 72.32105,\r\n \"serviceTimeMin\": 44.0679,\r\n \"serviceTimeMax\": 591.2077\r\n },\r\n {\r\n \"country\": \"US\",\r\n \"region\": \"IL\",\r\n \"zip\": \"60608\",\r\n \"callCountSuccess\": 80,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 80,\r\n \"bandwidth\": 22800,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 101.041745,\r\n \"apiTimeMin\": 44.2795,\r\n \"apiTimeMax\": 760.6194,\r\n \"serviceTimeAvg\": 71.19251,\r\n \"serviceTimeMin\": 44.056000000000004,\r\n \"serviceTimeMax\": 760.28780000000006\r\n },\r\n {\r\n \"country\": \"US\",\r\n \"region\": \"WA\",\r\n \"zip\": \"98052\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 80.42547,\r\n \"apiTimeMin\": 44.495000000000005,\r\n \"apiTimeMax\": 398.7982,\r\n \"serviceTimeAvg\": 51.83135,\r\n \"serviceTimeMin\": 44.280300000000004,\r\n \"serviceTimeMax\": 115.97420000000001\r\n },\r\n {\r\n \"country\": \"US\",\r\n \"region\": \"IA\",\r\n \"zip\": \"0\",\r\n \"callCountSuccess\": 6,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 6,\r\n \"bandwidth\": 12005,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 419.55240000000003,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 68.108916666666673,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 182.3805\r\n }\r\n ],\r\n \"count\": 7,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e3cad2f4acd5f008a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:19:59.283Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"f01011258be443508acefd69d070c579\",\r\n \"secondaryKey\": \"83fe51906f2f4d4281111837d735a372\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byOperation?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5T3BlcmF0aW9uPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/reports/byApi?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlcG9ydHMvYnlBcGk/JGZpbHRlcj10aW1lc3RhbXAlMjBnZSUyMGRhdGV0aW1lJzIwMTctMDYtMjJUMDA6MDA6MDAnJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20586a07-1ced-4680-aded-6d05e0c29075" + "23b0f23f-fa97-446c-ba6c-f8d97eff1ec3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:59:13 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4534b73-1963-43e3-8da3-dea58b8ab5f8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "abec5106-01e7-47ad-bba6-c68d573dd2c6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "b1f7cc3e-e02f-419c-ac0a-1bc94c45fc14" + "825b6f56-627f-4d42-bdb1-cf73fe570c4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021616Z:b1f7cc3e-e02f-419c-ac0a-1bc94c45fc14" + "WESTUS:20200207T015914Z:825b6f56-627f-4d42-bdb1-cf73fe570c4f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:16 GMT" - ], "Content-Length": [ - "2542" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,61 +328,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Retrieve resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"callCountSuccess\": 293,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 293,\r\n \"bandwidth\": 84543,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 106.4471204778157,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 840.3682,\r\n \"serviceTimeAvg\": 72.188404095563143,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 803.14410000000009\r\n },\r\n {\r\n \"name\": \"Retrieve resource (cached)\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"callCountSuccess\": 1,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 1,\r\n \"bandwidth\": 673,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 664.3346,\r\n \"apiTimeMin\": 664.3346,\r\n \"apiTimeMax\": 664.3346,\r\n \"serviceTimeAvg\": 44.769000000000005,\r\n \"serviceTimeMin\": 44.769000000000005,\r\n \"serviceTimeMax\": 44.769000000000005\r\n },\r\n {\r\n \"name\": \"Modify Resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/modify-resource\",\r\n \"callCountSuccess\": 1,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 1,\r\n \"bandwidth\": 623,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 44.5135,\r\n \"apiTimeMin\": 44.5135,\r\n \"apiTimeMax\": 44.5135,\r\n \"serviceTimeAvg\": 44.0843,\r\n \"serviceTimeMin\": 44.0843,\r\n \"serviceTimeMax\": 44.0843\r\n },\r\n {\r\n \"name\": \"Create resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"callCountSuccess\": 2,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 2,\r\n \"bandwidth\": 17928,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 1444.0503,\r\n \"apiTimeMin\": 1218.5258000000001,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 180.69225,\r\n \"serviceTimeMin\": 179.00400000000002,\r\n \"serviceTimeMax\": 182.3805\r\n },\r\n {\r\n \"name\": \"Remove resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/remove-resource\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n },\r\n {\r\n \"name\": \"Retrieve header only\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-header-only\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n }\r\n ],\r\n \"count\": 6,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Echo API\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"callCountSuccess\": 14,\r\n \"callCountBlocked\": 2,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 16,\r\n \"bandwidth\": 6132,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 159.97055,\r\n \"apiTimeMin\": 44.9106,\r\n \"apiTimeMax\": 1418.9536,\r\n \"serviceTimeAvg\": 66.006857142857143,\r\n \"serviceTimeMin\": 44.2933,\r\n \"serviceTimeMax\": 162.5107\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byProduct?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5UHJvZHVjdD8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/reports/byGeo?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlcG9ydHMvYnlHZW8/JGZpbHRlcj10aW1lc3RhbXAlMjBnZSUyMGRhdGV0aW1lJzIwMTctMDYtMjJUMDA6MDA6MDAnJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e905db13-89f9-4050-8853-38366996e3e6" + "40c9b19a-2a4c-42f0-89b0-e5a06108927a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:59:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd9364cb-0c85-4d23-b693-cd43513d14cb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "94e41108-49e1-4944-bc08-5b3708ae384b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "ad8517b5-4f60-4c1c-8175-b065cb08c3d0" + "db91d5e3-23a3-4541-abfb-a865a2cc3032" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021617Z:ad8517b5-4f60-4c1c-8175-b065cb08c3d0" + "WESTUS:20200207T015914Z:db91d5e3-23a3-4541-abfb-a865a2cc3032" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:16 GMT" - ], "Content-Length": [ - "803" + "388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,61 +391,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Starter\",\r\n \"productId\": \"/products/starter\",\r\n \"callCountSuccess\": 3,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 3,\r\n \"bandwidth\": 18601,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 1184.1450666666667,\r\n \"apiTimeMin\": 664.3346,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 135.3845,\r\n \"serviceTimeMin\": 44.769000000000005,\r\n \"serviceTimeMax\": 182.3805\r\n },\r\n {\r\n \"name\": \"Unlimited\",\r\n \"productId\": \"/products/unlimited\",\r\n \"callCountSuccess\": 294,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 294,\r\n \"bandwidth\": 85166,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 106.23646190476191,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 840.3682,\r\n \"serviceTimeAvg\": 72.0928119047619,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 803.14410000000009\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"country\": \"US\",\r\n \"region\": \"WA\",\r\n \"zip\": \"0\",\r\n \"callCountSuccess\": 14,\r\n \"callCountBlocked\": 2,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 16,\r\n \"bandwidth\": 6132,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 159.97055,\r\n \"apiTimeMin\": 44.9106,\r\n \"apiTimeMax\": 1418.9536,\r\n \"serviceTimeAvg\": 66.006857142857143,\r\n \"serviceTimeMin\": 44.2933,\r\n \"serviceTimeMax\": 162.5107\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/bySubscription?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5U3Vic2NyaXB0aW9uPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/reports/byOperation?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlcG9ydHMvYnlPcGVyYXRpb24/JGZpbHRlcj10aW1lc3RhbXAlMjBnZSUyMGRhdGV0aW1lJzIwMTctMDYtMjJUMDA6MDA6MDAnJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0a7e9f6-404c-4543-8dc2-cc895d4c63d0" + "50c2bdb5-fd8c-400b-bb14-5d222abf5678" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:59:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7db82a4-8de5-4fb7-be36-8fcdf13e4a5a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a0f5606e-9810-456a-8d72-5dbe730c3c25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "bf039355-3823-4ec2-bd8c-d6bbd7b2e349" + "78f3c2e3-8469-46cd-9fa1-0ce7f5ca969c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021617Z:bf039355-3823-4ec2-bd8c-d6bbd7b2e349" + "WESTUS:20200207T015915Z:78f3c2e3-8469-46cd-9fa1-0ce7f5ca969c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:16 GMT" - ], "Content-Length": [ - "945" + "2366" ], "Content-Type": [ "application/json; charset=utf-8" @@ -451,61 +454,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"\",\r\n \"userId\": \"/users/1\",\r\n \"productId\": \"/products/starter\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"callCountSuccess\": 3,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 3,\r\n \"bandwidth\": 18601,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 1184.1450666666667,\r\n \"apiTimeMin\": 664.3346,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 135.3845,\r\n \"serviceTimeMin\": 44.769000000000005,\r\n \"serviceTimeMax\": 182.3805\r\n },\r\n {\r\n \"name\": \"\",\r\n \"userId\": \"/users/1\",\r\n \"productId\": \"/products/unlimited\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"callCountSuccess\": 294,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 294,\r\n \"bandwidth\": 85166,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 106.23646190476191,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 840.3682,\r\n \"serviceTimeAvg\": 72.0928119047619,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 803.14410000000009\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Create resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n },\r\n {\r\n \"name\": \"Modify Resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/modify-resource\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n },\r\n {\r\n \"name\": \"Remove resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/remove-resource\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n },\r\n {\r\n \"name\": \"Retrieve header only\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-header-only\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n },\r\n {\r\n \"name\": \"Retrieve resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"callCountSuccess\": 14,\r\n \"callCountBlocked\": 2,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 16,\r\n \"bandwidth\": 6132,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 159.97055,\r\n \"apiTimeMin\": 44.9106,\r\n \"apiTimeMax\": 1418.9536,\r\n \"serviceTimeAvg\": 66.006857142857143,\r\n \"serviceTimeMin\": 44.2933,\r\n \"serviceTimeMax\": 162.5107\r\n },\r\n {\r\n \"name\": \"Retrieve resource (cached)\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n }\r\n ],\r\n \"count\": 6,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byTime?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&interval=PT30M&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5VGltZT8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmaW50ZXJ2YWw9UFQzME0mYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/reports/byProduct?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlcG9ydHMvYnlQcm9kdWN0PyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dc94b63-d167-406b-8dcf-846084e6cd39" + "e61bf081-9c28-4963-abcb-d627326fd5c4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:59:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d75b0d6-2ed0-4291-97a3-e1b957509863" + "607196b6-cad9-4869-a856-53a7d0323703" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a43274b6-6e4a-4a4c-9313-4e972f8c1bf5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T015916Z:a43274b6-6e4a-4a4c-9313-4e972f8c1bf5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Starter\",\r\n \"productId\": \"/products/starter\",\r\n \"callCountSuccess\": 14,\r\n \"callCountBlocked\": 2,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 16,\r\n \"bandwidth\": 6132,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 159.97055,\r\n \"apiTimeMin\": 44.9106,\r\n \"apiTimeMax\": 1418.9536,\r\n \"serviceTimeAvg\": 66.006857142857143,\r\n \"serviceTimeMin\": 44.2933,\r\n \"serviceTimeMax\": 162.5107\r\n },\r\n {\r\n \"name\": \"Unlimited\",\r\n \"productId\": \"/products/unlimited\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/reports/bySubscription?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlcG9ydHMvYnlTdWJzY3JpcHRpb24/JGZpbHRlcj10aW1lc3RhbXAlMjBnZSUyMGRhdGV0aW1lJzIwMTctMDYtMjJUMDA6MDA6MDAnJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3540bc6-9c5f-4aad-b787-b4895dd873be" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:59:16 GMT" + ], + "Pragma": [ + "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63c1d2ac-28ae-4b8b-9e89-1a7c2d5c2f90" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-correlation-request-id": [ - "7b576763-8013-4809-a375-5a131cc13bdb" + "90d80e46-13fc-418f-91c1-b7fbc6739eb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021617Z:7b576763-8013-4809-a375-5a131cc13bdb" + "WESTUS:20200207T015917Z:90d80e46-13fc-418f-91c1-b7fbc6739eb5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:17 GMT" - ], "Content-Length": [ - "12061" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,61 +580,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"timestamp\": \"2017-08-07T21:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 80.42547,\r\n \"apiTimeMin\": 44.495000000000005,\r\n \"apiTimeMax\": 398.7982,\r\n \"serviceTimeAvg\": 51.83135,\r\n \"serviceTimeMin\": 44.280300000000004,\r\n \"serviceTimeMax\": 115.97420000000001\r\n },\r\n {\r\n \"timestamp\": \"2017-08-18T01:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 80.97234,\r\n \"apiTimeMin\": 44.4067,\r\n \"apiTimeMax\": 405.77360000000004,\r\n \"serviceTimeAvg\": 51.03365,\r\n \"serviceTimeMin\": 44.131800000000005,\r\n \"serviceTimeMax\": 109.71690000000001\r\n },\r\n {\r\n \"timestamp\": \"2017-08-22T23:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 95.593820000000008,\r\n \"apiTimeMin\": 48.281200000000005,\r\n \"apiTimeMax\": 513.3941,\r\n \"serviceTimeAvg\": 58.466809999999995,\r\n \"serviceTimeMin\": 48.015,\r\n \"serviceTimeMax\": 144.9402\r\n },\r\n {\r\n \"timestamp\": \"2017-08-25T16:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 80.53355,\r\n \"apiTimeMin\": 44.394200000000005,\r\n \"apiTimeMax\": 400.59900000000005,\r\n \"serviceTimeAvg\": 51.710710000000006,\r\n \"serviceTimeMin\": 44.1156,\r\n \"serviceTimeMax\": 115.8096\r\n },\r\n {\r\n \"timestamp\": \"2017-08-28T19:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 82.3302,\r\n \"apiTimeMin\": 44.5686,\r\n \"apiTimeMax\": 416.1664,\r\n \"serviceTimeAvg\": 52.51221,\r\n \"serviceTimeMin\": 44.1784,\r\n \"serviceTimeMax\": 121.6342\r\n },\r\n {\r\n \"timestamp\": \"2017-08-30T00:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 80.806720000000013,\r\n \"apiTimeMin\": 44.6986,\r\n \"apiTimeMax\": 399.5978,\r\n \"serviceTimeAvg\": 53.07242,\r\n \"serviceTimeMin\": 44.3716,\r\n \"serviceTimeMax\": 125.7459\r\n },\r\n {\r\n \"timestamp\": \"2017-09-05T22:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 82.28773,\r\n \"apiTimeMin\": 44.3906,\r\n \"apiTimeMax\": 418.9957,\r\n \"serviceTimeAvg\": 52.84651,\r\n \"serviceTimeMin\": 44.0679,\r\n \"serviceTimeMax\": 128.09560000000002\r\n },\r\n {\r\n \"timestamp\": \"2017-09-15T19:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 6,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 6,\r\n \"bandwidth\": 1710,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 100.77743333333335,\r\n \"apiTimeMin\": 44.5951,\r\n \"apiTimeMax\": 369.48060000000004,\r\n \"serviceTimeAvg\": 56.35306666666667,\r\n \"serviceTimeMin\": 44.3688,\r\n \"serviceTimeMax\": 105.357\r\n },\r\n {\r\n \"timestamp\": \"2017-09-15T19:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 4,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 4,\r\n \"bandwidth\": 1140,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 44.89715,\r\n \"apiTimeMin\": 44.736000000000004,\r\n \"apiTimeMax\": 45.0081,\r\n \"serviceTimeAvg\": 44.591,\r\n \"serviceTimeMin\": 44.4515,\r\n \"serviceTimeMax\": 44.701100000000004\r\n },\r\n {\r\n \"timestamp\": \"2017-09-26T00:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 169.38808,\r\n \"apiTimeMin\": 44.482400000000005,\r\n \"apiTimeMax\": 591.60070000000007,\r\n \"serviceTimeAvg\": 138.18714,\r\n \"serviceTimeMin\": 44.2541,\r\n \"serviceTimeMax\": 591.2077\r\n },\r\n {\r\n \"timestamp\": \"2017-09-29T01:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 84.65684,\r\n \"apiTimeMin\": 44.9239,\r\n \"apiTimeMax\": 438.7459,\r\n \"serviceTimeAvg\": 53.09559,\r\n \"serviceTimeMin\": 44.5934,\r\n \"serviceTimeMax\": 126.44720000000001\r\n },\r\n {\r\n \"timestamp\": \"2017-10-05T20:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 78.31927,\r\n \"apiTimeMin\": 44.338,\r\n \"apiTimeMax\": 364.9227,\r\n \"serviceTimeAvg\": 52.015960000000007,\r\n \"serviceTimeMin\": 44.0569,\r\n \"serviceTimeMax\": 110.97970000000001\r\n },\r\n {\r\n \"timestamp\": \"2017-10-19T03:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 91.16387,\r\n \"apiTimeMin\": 44.2795,\r\n \"apiTimeMax\": 507.6177,\r\n \"serviceTimeAvg\": 52.383950000000006,\r\n \"serviceTimeMin\": 44.056000000000004,\r\n \"serviceTimeMax\": 123.3345\r\n },\r\n {\r\n \"timestamp\": \"2017-10-27T22:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 80.18436,\r\n \"apiTimeMin\": 44.7808,\r\n \"apiTimeMax\": 395.8116,\r\n \"serviceTimeAvg\": 54.08238,\r\n \"serviceTimeMin\": 44.462700000000005,\r\n \"serviceTimeMax\": 138.3347\r\n },\r\n {\r\n \"timestamp\": \"2017-11-06T17:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 148.75037,\r\n \"apiTimeMin\": 44.9981,\r\n \"apiTimeMax\": 463.56120000000004,\r\n \"serviceTimeAvg\": 120.73895,\r\n \"serviceTimeMin\": 44.682500000000005,\r\n \"serviceTimeMax\": 463.23510000000005\r\n },\r\n {\r\n \"timestamp\": \"2017-11-09T02:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 210.68367000000003,\r\n \"apiTimeMin\": 50.8297,\r\n \"apiTimeMax\": 760.6194,\r\n \"serviceTimeAvg\": 181.6298,\r\n \"serviceTimeMin\": 50.5576,\r\n \"serviceTimeMax\": 760.28780000000006\r\n },\r\n {\r\n \"timestamp\": \"2017-11-16T20:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 90.99065,\r\n \"apiTimeMin\": 50.7498,\r\n \"apiTimeMax\": 447.8064,\r\n \"serviceTimeAvg\": 61.489,\r\n \"serviceTimeMin\": 50.442800000000005,\r\n \"serviceTimeMax\": 156.6904\r\n },\r\n {\r\n \"timestamp\": \"2017-11-30T18:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 93.90998,\r\n \"apiTimeMin\": 50.7864,\r\n \"apiTimeMax\": 447.3483,\r\n \"serviceTimeAvg\": 63.19516,\r\n \"serviceTimeMin\": 50.5264,\r\n \"serviceTimeMax\": 144.6286\r\n },\r\n {\r\n \"timestamp\": \"2018-02-17T02:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 162.95103,\r\n \"apiTimeMin\": 44.4615,\r\n \"apiTimeMax\": 552.9133,\r\n \"serviceTimeAvg\": 131.01562,\r\n \"serviceTimeMin\": 44.2085,\r\n \"serviceTimeMax\": 552.6203\r\n },\r\n {\r\n \"timestamp\": \"2018-02-21T18:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2860,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 90.50603000000001,\r\n \"apiTimeMin\": 44.3566,\r\n \"apiTimeMax\": 501.97150000000005,\r\n \"serviceTimeAvg\": 53.862800000000007,\r\n \"serviceTimeMin\": 44.1133,\r\n \"serviceTimeMax\": 138.74790000000002\r\n },\r\n {\r\n \"timestamp\": \"2018-03-06T00:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 6,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 6,\r\n \"bandwidth\": 12005,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 419.55240000000003,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 68.108916666666673,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 182.3805\r\n },\r\n {\r\n \"timestamp\": \"2018-03-17T05:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2840,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 86.25633,\r\n \"apiTimeMin\": 45.3292,\r\n \"apiTimeMax\": 443.74870000000004,\r\n \"serviceTimeAvg\": 55.77305,\r\n \"serviceTimeMin\": 44.961400000000005,\r\n \"serviceTimeMax\": 145.0343\r\n },\r\n {\r\n \"timestamp\": \"2018-03-21T20:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2840,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 92.0976,\r\n \"apiTimeMin\": 45.295500000000004,\r\n \"apiTimeMax\": 502.92010000000005,\r\n \"serviceTimeAvg\": 58.79657000000001,\r\n \"serviceTimeMin\": 44.9345,\r\n \"serviceTimeMax\": 177.2782\r\n },\r\n {\r\n \"timestamp\": \"2018-03-23T01:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2840,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 85.279500000000013,\r\n \"apiTimeMin\": 45.2291,\r\n \"apiTimeMax\": 438.7103,\r\n \"serviceTimeAvg\": 54.063,\r\n \"serviceTimeMin\": 44.9056,\r\n \"serviceTimeMax\": 130.7047\r\n },\r\n {\r\n \"timestamp\": \"2018-05-30T19:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2840,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 170.7788,\r\n \"apiTimeMin\": 45.4129,\r\n \"apiTimeMax\": 803.5901,\r\n \"serviceTimeAvg\": 132.37705,\r\n \"serviceTimeMin\": 45.024100000000004,\r\n \"serviceTimeMax\": 803.14410000000009\r\n },\r\n {\r\n \"timestamp\": \"2018-06-02T03:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2840,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 92.72177,\r\n \"apiTimeMin\": 45.6161,\r\n \"apiTimeMax\": 489.8204,\r\n \"serviceTimeAvg\": 58.169630000000005,\r\n \"serviceTimeMin\": 45.1113,\r\n \"serviceTimeMax\": 149.1651\r\n },\r\n {\r\n \"timestamp\": \"2018-06-18T23:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 89.856310000000008,\r\n \"apiTimeMin\": 45.3308,\r\n \"apiTimeMax\": 476.46540000000005,\r\n \"serviceTimeAvg\": 54.359570000000005,\r\n \"serviceTimeMin\": 44.9335,\r\n \"serviceTimeMax\": 128.60150000000002\r\n },\r\n {\r\n \"timestamp\": \"2018-09-22T02:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 124.94995000000002,\r\n \"apiTimeMin\": 50.6274,\r\n \"apiTimeMax\": 785.66410000000008,\r\n \"serviceTimeAvg\": 60.509710000000005,\r\n \"serviceTimeMin\": 50.233900000000006,\r\n \"serviceTimeMax\": 146.6279\r\n },\r\n {\r\n \"timestamp\": \"2018-09-24T18:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 1,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 1,\r\n \"bandwidth\": 9082,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 1218.5258000000001,\r\n \"apiTimeMin\": 1218.5258000000001,\r\n \"apiTimeMax\": 1218.5258000000001,\r\n \"serviceTimeAvg\": 179.00400000000002,\r\n \"serviceTimeMin\": 179.00400000000002,\r\n \"serviceTimeMax\": 179.00400000000002\r\n },\r\n {\r\n \"timestamp\": \"2018-09-25T17:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 125.44955,\r\n \"apiTimeMin\": 45.023900000000005,\r\n \"apiTimeMax\": 840.3682,\r\n \"serviceTimeAvg\": 54.499,\r\n \"serviceTimeMin\": 44.6144,\r\n \"serviceTimeMax\": 138.6919\r\n },\r\n {\r\n \"timestamp\": \"2018-09-25T23:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2840,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 179.47886,\r\n \"apiTimeMin\": 51.0268,\r\n \"apiTimeMax\": 654.3816,\r\n \"serviceTimeAvg\": 130.26321000000002,\r\n \"serviceTimeMin\": 50.6313,\r\n \"serviceTimeMax\": 647.2155\r\n },\r\n {\r\n \"timestamp\": \"2018-10-03T00:00:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 10,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 10,\r\n \"bandwidth\": 2850,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 95.263510000000011,\r\n \"apiTimeMin\": 50.871,\r\n \"apiTimeMax\": 490.04760000000005,\r\n \"serviceTimeAvg\": 57.74923,\r\n \"serviceTimeMin\": 50.470600000000005,\r\n \"serviceTimeMax\": 119.76060000000001\r\n }\r\n ],\r\n \"count\": 32,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"\",\r\n \"userId\": \"/users/1\",\r\n \"productId\": \"/products/starter\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"callCountSuccess\": 14,\r\n \"callCountBlocked\": 2,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 16,\r\n \"bandwidth\": 6132,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 159.97055,\r\n \"apiTimeMin\": 44.9106,\r\n \"apiTimeMax\": 1418.9536,\r\n \"serviceTimeAvg\": 66.006857142857143,\r\n \"serviceTimeMin\": 44.2933,\r\n \"serviceTimeMax\": 162.5107\r\n },\r\n {\r\n \"name\": \"\",\r\n \"userId\": \"/users/1\",\r\n \"productId\": \"/products/unlimited\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad304acd5f008a070002\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byUser?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5VXNlcj8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/reports/byTime?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&interval=PT30M&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlcG9ydHMvYnlUaW1lPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZpbnRlcnZhbD1QVDMwTSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe8e9eeb-0bfd-4ee6-92a6-82d6275853a6" + "f58cc8fa-404e-43b8-92dd-f89a23ba9e98" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:59:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b275b299-a392-4346-a553-2925476698b4" + "febce729-6e7b-4c14-b9f8-4b0c5b0b6e0b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a2f18770-130e-4f23-94ef-e9a932dd5d14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200207T015917Z:a2f18770-130e-4f23-94ef-e9a932dd5d14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"timestamp\": \"2020-02-07T01:30:00Z\",\r\n \"interval\": \"PT30M\",\r\n \"callCountSuccess\": 14,\r\n \"callCountBlocked\": 2,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 16,\r\n \"bandwidth\": 6132,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 159.97055,\r\n \"apiTimeMin\": 44.9106,\r\n \"apiTimeMax\": 1418.9536,\r\n \"serviceTimeAvg\": 66.006857142857143,\r\n \"serviceTimeMin\": 44.2933,\r\n \"serviceTimeMax\": 162.5107\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/reports/byUser?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlcG9ydHMvYnlVc2VyPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "342117bf-a9fb-4709-aee1-35524f21ef3f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Feb 2020 01:59:18 GMT" + ], + "Pragma": [ + "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d687854-6804-4022-8cc2-13064e52f26c" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "2bd70090-09f4-440d-bfeb-2549645ac499" + "8b484dd7-e4cf-4cda-854a-cc4f8469ade5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021618Z:2bd70090-09f4-440d-bfeb-2549645ac499" + "WESTUS:20200207T015918Z:8b484dd7-e4cf-4cda-854a-cc4f8469ade5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:17 GMT" - ], "Content-Length": [ - "755" + "721" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,61 +706,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Administrator\",\r\n \"userId\": \"/users/1\",\r\n \"callCountSuccess\": 297,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 297,\r\n \"bandwidth\": 103767,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 117.12442760942761,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 72.732121885521892,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 803.14410000000009\r\n },\r\n {\r\n \"name\": \"Anonymous\",\r\n \"userId\": \"/users/54c800b332965a0035030000\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Administrator\",\r\n \"userId\": \"/users/1\",\r\n \"callCountSuccess\": 14,\r\n \"callCountBlocked\": 2,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 16,\r\n \"bandwidth\": 6132,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 159.97055,\r\n \"apiTimeMin\": 44.9106,\r\n \"apiTimeMax\": 1418.9536,\r\n \"serviceTimeAvg\": 66.006857142857143,\r\n \"serviceTimeMin\": 44.2933,\r\n \"serviceTimeMax\": 162.5107\r\n },\r\n {\r\n \"name\": \"Anonymous\",\r\n \"userId\": \"/users/54c800b332965a0035030000\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byRequest?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5UmVxdWVzdD8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/reports/byRequest?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3JlcG9ydHMvYnlSZXF1ZXN0PyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87f9cd88-82dc-4611-b17d-7b1bc5451f5f" + "f1f2cf1d-ff86-448e-b412-bdbe6600be65" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:59:25 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "491b7fd6-addd-4d22-9961-15ca50b244df" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a649e993-1799-4d3a-8001-3fe414dc9af1" ], "x-ms-correlation-request-id": [ - "e1624bcd-517c-4c1b-b158-5973fb641529" + "5e3e3689-748a-4197-b0f9-6d7ca9f0b792" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021622Z:e1624bcd-517c-4c1b-b158-5973fb641529" + "WESTUS:20200207T015925Z:5e3e3689-748a-4197-b0f9-6d7ca9f0b792" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:16:22 GMT" - ], "Content-Length": [ - "238148" + "9738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -640,7 +769,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/interna-status-0123456789abcdef\",\r\n \"ipAddress\": \"131.107.174.154\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-07-13T23:23:53.5816069Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 876.451,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7f4f12c9-82aa-4852-93dc-e6e819987bfd\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.174.154\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-07-13T23:23:54.6285103Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.66980000000000006,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a32bf026-fc60-4c0e-b543-cf76e9d9a665\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:42.3994478Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 398.7982,\r\n \"serviceTime\": 115.97420000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ff2971aa-4c77-4879-8d1a-af1032546153\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:47.8415987Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.521,\r\n \"serviceTime\": 44.6094,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a287f019-e668-4746-957a-e51cd966eeae\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:52.9030826Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8112,\r\n \"serviceTime\": 44.518100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"717909b1-b991-4644-bfcf-4a85ffa74670\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:57.9425225Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7115,\r\n \"serviceTime\": 45.4498,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ff42c10-8e89-41b7-a540-2fa9f46d39cb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:03.0128091Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.252700000000004,\r\n \"serviceTime\": 44.911300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e9d2eb4f-e6a3-4cf6-851f-a38dc7747262\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:08.0785122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.985800000000005,\r\n \"serviceTime\": 44.7153,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35b4f436-3e7c-446d-b6b8-28b65acb3edf\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:13.143713Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6278,\r\n \"serviceTime\": 44.408300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2ce0e20e-8908-41f9-94a3-c3e57fac80b3\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:18.2068733Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1638,\r\n \"serviceTime\": 44.8616,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c43b6d7-724d-43a5-805b-6e99ad1374bf\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:23.2696227Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.495000000000005,\r\n \"serviceTime\": 44.280300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"798002d9-58b2-4b80-b98a-7da72579d451\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:28.3297958Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8877,\r\n \"serviceTime\": 44.5852,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b3f7f8e5-9db8-4bbe-8ff4-d431e78f93ad\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:32.4633311Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 405.77360000000004,\r\n \"serviceTime\": 109.71690000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"82a75278-2c11-4680-bb55-d03fec0d5394\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:37.9160813Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5173,\r\n \"serviceTime\": 44.4439,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5d78d33a-6a50-45fb-9c90-b8c1891100f6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:43.0077901Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6762,\r\n \"serviceTime\": 44.4478,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"77bd3850-03a8-4f49-b6d8-f0433a93bf55\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:48.1156987Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9489,\r\n \"serviceTime\": 44.6541,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9355f60e-3cf7-4846-a977-fe689d68c6a5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:53.2042181Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4067,\r\n \"serviceTime\": 44.131800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"80907ca9-e6a8-410e-80eb-cd5f4e62560c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:58.3066918Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.846000000000004,\r\n \"serviceTime\": 44.5929,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"28e09ded-0705-4834-8501-8ecbc9f87b5c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:03.3974731Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.446400000000004,\r\n \"serviceTime\": 44.1625,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ecc3c86d-7d01-4901-87be-8338568cf51a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:08.4886922Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0544,\r\n \"serviceTime\": 44.694700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6357137b-14c7-4af8-85c8-341addb269e3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:13.568822Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7316,\r\n \"serviceTime\": 44.4906,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"057acf31-0a55-443e-b4bf-fcad483cb38d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:18.6721766Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.322300000000006,\r\n \"serviceTime\": 45.0013,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8b574e3-a9b8-4c6f-bfc4-9b736ae0e5c3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:38.8425726Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 513.3941,\r\n \"serviceTime\": 144.9402,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c9f30e98-5766-453b-9547-e3950db270e2\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:44.6249951Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.8006,\r\n \"serviceTime\": 48.8892,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4da586db-02fd-4f2b-b8cb-33b7b0ed2952\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:49.7161898Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.6471,\r\n \"serviceTime\": 49.384,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b93a6866-aa95-414e-8087-575bc8be84e4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:54.7973344Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.646100000000004,\r\n \"serviceTime\": 48.4401,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f67299d8-8c30-4709-902d-19c23be5be88\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:59.8719881Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.426,\r\n \"serviceTime\": 49.208200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1d3d81e0-f4b4-4fe6-b4e9-92ba4825bd80\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:04.9658545Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.6435,\r\n \"serviceTime\": 49.409600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b5d5da7b-e060-459c-b41c-ffa1c34a0193\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:10.0450413Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.281200000000005,\r\n \"serviceTime\": 48.015,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"44e4696a-87c0-40f1-ac62-15d02de9a0f7\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:15.1534866Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.7181,\r\n \"serviceTime\": 48.464200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"60eb1ee1-05b7-4486-bad4-796b6f6abe40\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:20.2208737Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.4065,\r\n \"serviceTime\": 49.1785,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8701de57-f906-44e5-b10f-d073113d02d0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:25.325534Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.975,\r\n \"serviceTime\": 48.7391,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7d3ec426-e276-44d7-ae65-9215a8b23ca5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:41.131193Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 400.59900000000005,\r\n \"serviceTime\": 115.8096,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"23ce3aab-4425-4998-94b5-7c41647f8a61\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:46.5938393Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7385,\r\n \"serviceTime\": 44.725300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64028abf-e352-4d04-a34f-db4d517ac401\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:51.654492Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2551,\r\n \"serviceTime\": 44.871300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"94a067cb-01d2-4e94-bad5-7fb404b1c726\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:56.7197122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2074,\r\n \"serviceTime\": 44.926300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"296722d6-b4aa-445c-bad5-77a8a28eba4a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:01.7845145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8577,\r\n \"serviceTime\": 44.578500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb4d7375-651b-411b-b73a-3578ae62abe0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:06.8677785Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.394200000000005,\r\n \"serviceTime\": 44.1156,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b5ad33a7-0660-4017-a3f6-4122b74b5cad\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:11.9252192Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7793,\r\n \"serviceTime\": 44.4543,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"013121c4-f22a-45ff-9a3c-be6011e92af4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:16.9899732Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0878,\r\n \"serviceTime\": 44.7813,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8ab42698-ec95-4db2-99b4-5b950688c892\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:22.0759221Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8046,\r\n \"serviceTime\": 44.511,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b65f7778-ce58-4985-94ae-210b0aee92a3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:27.1462223Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.611900000000006,\r\n \"serviceTime\": 44.3339,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"45d00fe4-b063-41bf-bcfe-f353d8399c24\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:53:49.7081666Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 416.1664,\r\n \"serviceTime\": 121.6342,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"929536c5-5aa3-4a7e-96d4-fc0cb3443352\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:53:55.1909294Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.3862,\r\n \"serviceTime\": 47.2434,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fa97ce55-5982-40a6-ab2f-6fc4e61d44bb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:00.2672934Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5686,\r\n \"serviceTime\": 44.1784,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bd08b2e4-1b85-419a-98b8-027cdfdc319a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:05.3266172Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.910700000000006,\r\n \"serviceTime\": 44.5521,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bda398ec-87b1-4306-b969-e553d08d99df\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:10.3803959Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.923,\r\n \"serviceTime\": 44.565200000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0fb966cf-3d66-4fac-8142-83b7274dd28d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:15.4608119Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.725,\r\n \"serviceTime\": 44.446000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5f2319fd-07c6-4ae5-9d26-a8f3b96d40c5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:20.5463278Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.858000000000004,\r\n \"serviceTime\": 44.632000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ef096b07-38a1-47b6-af6c-6aa57e3ce8e6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:25.6085877Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8243,\r\n \"serviceTime\": 44.5432,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"46d70e56-8351-4898-ae6f-1ad7bf648436\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:30.6699314Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8301,\r\n \"serviceTime\": 44.503,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe22c4d7-4875-4b97-8063-88550a45f61e\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:35.7241991Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.109700000000004,\r\n \"serviceTime\": 44.824600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"23b32b5e-021d-4c7f-aab0-8285c5289515\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:24:50.8075853Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 399.5978,\r\n \"serviceTime\": 125.7459,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4787e8ca-1f7b-4294-b4b9-59e9d975fcca\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:24:56.2497248Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6199,\r\n \"serviceTime\": 44.5154,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c75df511-b8be-4c85-b409-0f0a031a8348\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:01.330314Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.974000000000004,\r\n \"serviceTime\": 44.656,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cdfb3a33-b0ca-46cb-acd4-e5ee2cfe98ff\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:06.4105139Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.1578,\r\n \"serviceTime\": 47.9313,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fb5ea6eb-0939-47d2-a1ca-88a06a8356b5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:11.4755021Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2695,\r\n \"serviceTime\": 44.8877,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"750ce1ca-c1b1-4ea0-8083-66aae21516ab\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:16.5400396Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8846,\r\n \"serviceTime\": 44.5399,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2e569ed4-60a7-47e5-aa77-425f631990a4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:21.6078033Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2592,\r\n \"serviceTime\": 45.029700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a0013396-4287-4704-972c-6f66ec1612d4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:26.669011Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6986,\r\n \"serviceTime\": 44.3716,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2f63266a-359a-44cb-8ce3-383dc881b56c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:31.7335825Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8988,\r\n \"serviceTime\": 44.5996,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d1a4afff-0fd4-4654-ad5e-652175808465\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:36.7935016Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.707,\r\n \"serviceTime\": 44.4471,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6a650828-ce9c-4a86-8c10-e3a4e5dbe96a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:16.8872889Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 418.9957,\r\n \"serviceTime\": 128.09560000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d5caba4-de33-4a0f-9e9e-ae31eb90a904\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:22.391335Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.670700000000004,\r\n \"serviceTime\": 44.7684,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c772de9e-48f3-4791-adde-acdd171c5a62\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:27.4810659Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.691,\r\n \"serviceTime\": 44.374900000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c9793550-2675-4e70-94bd-0c227b02b5d4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:32.577867Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5401,\r\n \"serviceTime\": 44.2256,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c688c486-8931-4ccc-ba58-2bbfa08dd35e\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:37.6781146Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.3906,\r\n \"serviceTime\": 44.0679,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"11fa947f-a147-4111-9678-a7818115c0b6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:42.7693347Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9373,\r\n \"serviceTime\": 44.5214,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5fafa288-3e18-4779-a6e3-dfe79deffa91\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:47.8397781Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.955600000000004,\r\n \"serviceTime\": 44.6109,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"220867e8-fa11-4f42-9367-1af90223b695\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:52.933633Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8119,\r\n \"serviceTime\": 44.5396,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb3d3549-94b6-42c8-a329-423db0af93b3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:58.0248285Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0944,\r\n \"serviceTime\": 44.7564,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"24b9591a-fc22-400c-b02b-49a9cbc324fe\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:41:03.1215636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.79,\r\n \"serviceTime\": 44.504400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"61cb3ec8-10bf-41c4-8d30-8be5687b3d81\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:29.4255542Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 369.48060000000004,\r\n \"serviceTime\": 105.357,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3b6723dc-0cf8-4db8-89fa-31a4d4ea5f3b\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:34.8370135Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7019,\r\n \"serviceTime\": 44.3739,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ff7073e-527d-4e1a-8aab-0bf90e9e8a3c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:39.8858181Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8166,\r\n \"serviceTime\": 44.513000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35b9a17a-e4ac-4708-87a6-8b21b648a076\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:44.9392173Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 55.302800000000005,\r\n \"serviceTime\": 55.0266,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8aefa350-80de-4336-8e76-807637826583\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:49.9931275Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5951,\r\n \"serviceTime\": 44.3688,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a08add3f-9822-4cd5-8167-fffdf722d7e9\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:55.0646679Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7676,\r\n \"serviceTime\": 44.4791,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8bd5c765-55c2-440c-b30e-297db797ff21\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:00.1063008Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9909,\r\n \"serviceTime\": 44.701100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"de99f5b1-aa1c-4090-9369-12146938d3e7\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:05.1549098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8536,\r\n \"serviceTime\": 44.527,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2f3309bf-0b40-48f2-a3a4-86bb87be47e0\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:10.198323Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.736000000000004,\r\n \"serviceTime\": 44.4515,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3cc992b9-12ba-47d6-80e9-2bb00a98ccb5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:15.2412968Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0081,\r\n \"serviceTime\": 44.684400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"598b36e8-d370-4b26-8e14-5c3bbc2f7041\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:02:59.9748356Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 434.52680000000004,\r\n \"serviceTime\": 126.22470000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"438a78d2-1961-441a-b5bb-e113d268ce6b\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:05.4895983Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.2064,\r\n \"serviceTime\": 45.1893,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f4da2eec-3712-4fd1-9265-bf60c93d907c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:10.5650717Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.824200000000005,\r\n \"serviceTime\": 44.5176,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"50124bbf-6854-4879-93cc-05521a2b5b40\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:15.6526403Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.851600000000005,\r\n \"serviceTime\": 44.557500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35441e10-70dc-4144-b3c9-5c2b738519ae\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:20.7338218Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.482400000000005,\r\n \"serviceTime\": 44.2541,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"20940695-bc73-4519-b104-76d071e067df\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:25.8205635Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7747,\r\n \"serviceTime\": 44.5255,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"dc296fb9-7326-4771-a8b0-9c5dced4d9f4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:30.9571099Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 66.9139,\r\n \"serviceTime\": 66.295600000000007,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"28b359a8-fb20-4d52-9ee1-f06eff8a255d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:36.1176147Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.9197,\r\n \"serviceTime\": 46.6809,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e465f965-7c4a-42aa-b6d8-a11ac7173292\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:41.1932468Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 328.78040000000004,\r\n \"serviceTime\": 328.4185,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"72d30834-71e5-4f7c-8d7b-6223eae19905\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:46.5721795Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 591.60070000000007,\r\n \"serviceTime\": 591.2077,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"664de22f-dcda-4d1d-93e1-24bc5ab8846d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:38.3981596Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.7459,\r\n \"serviceTime\": 126.44720000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"905454b8-c5f4-4c8d-80c2-d99a5942fac7\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:43.8985519Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9114,\r\n \"serviceTime\": 44.7442,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04959572-5a4d-40a8-a900-5aa72dfbfdef\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:48.9593526Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9239,\r\n \"serviceTime\": 44.5934,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"89f65eb3-127b-4752-9761-074800388a17\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:54.0064911Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5,\r\n \"serviceTime\": 45.2569,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6788f084-6aaf-42b2-a58b-ff0fee7164d2\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:59.0714569Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.249100000000006,\r\n \"serviceTime\": 44.9373,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d4dd89be-200f-43db-a52d-30c872b0f608\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:04.1365812Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.352900000000005,\r\n \"serviceTime\": 45.075700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"229c3890-54bf-4780-abe2-c8b7a6453828\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:09.174611Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9384,\r\n \"serviceTime\": 44.644800000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"71d44aea-441f-4770-9b84-e88dd23ca27a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:14.2391001Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.007000000000005,\r\n \"serviceTime\": 44.771300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ac466766-a23f-4e7e-92da-14f34e5bc067\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:19.3090771Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9878,\r\n \"serviceTime\": 45.7633,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"56a3d7f0-748d-4193-828f-445e70ba4114\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:24.3579098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.952000000000005,\r\n \"serviceTime\": 44.7218,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ab3e7a1-2b11-4afd-b73b-b0493c8c4208\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:39.6697246Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 364.9227,\r\n \"serviceTime\": 110.97970000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a4699a08-a2d0-4c26-a539-a8ba6a79d04e\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:45.0764887Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7592,\r\n \"serviceTime\": 44.7278,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"246b0dc1-b738-4547-9eed-c8a14b97505e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:50.1520958Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8359,\r\n \"serviceTime\": 44.5371,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"12720ec3-421a-4ea0-84dd-7f9bd28d2c3e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:55.1856855Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9876,\r\n \"serviceTime\": 44.6678,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"033e48da-2d75-4726-90d3-6c52cf458171\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:00.2450141Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.338,\r\n \"serviceTime\": 44.0569,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7c103c97-b2fd-4888-ab16-b4b3c01f2a1c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:05.2998319Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2543,\r\n \"serviceTime\": 51.0415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"49113c57-e06a-45e0-a1e2-95c1588834aa\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:10.3652566Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7304,\r\n \"serviceTime\": 44.505700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ad3c01d-f6a4-4c80-ba14-1ba899b44d08\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:15.4296636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.445800000000006,\r\n \"serviceTime\": 44.1543,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b86fe156-aa1d-48b4-89c4-9a9b9e4b147c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:20.495029Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.7391,\r\n \"serviceTime\": 46.5658,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6a3ab8ba-eae9-486b-a4a8-8b055726ed71\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:25.5901698Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.179700000000004,\r\n \"serviceTime\": 44.923,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6a8e84d-941b-4cc9-b25c-762b5b0a730f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:30.3030768Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 507.6177,\r\n \"serviceTime\": 123.3345,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d953c79-3221-45a1-a76a-200469808ea5\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:35.8705079Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5146,\r\n \"serviceTime\": 44.4272,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b3ce24d1-c1da-4ecf-8742-482e38ca340b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:40.9363149Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7078,\r\n \"serviceTime\": 44.3415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9db80732-5d57-41f9-a6ef-563081f3aa12\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:46.0005709Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.878,\r\n \"serviceTime\": 44.535000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ee05f4a1-d60b-49fe-8c49-86f10cebb2f6\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:51.1428034Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4972,\r\n \"serviceTime\": 45.1886,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a9f636eb-0fa9-4665-a382-2e61b0138bb0\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:56.2047342Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9681,\r\n \"serviceTime\": 44.6495,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"597e8b45-e3b2-428a-a2ea-3c86dbfb1608\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:01.2695476Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9635,\r\n \"serviceTime\": 44.644000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8503d6e-0c7d-48a9-ae33-d6a05ec43528\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:06.3241822Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8097,\r\n \"serviceTime\": 44.486200000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4178f06d-ba88-4c7b-9976-865d58138157\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:11.433928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.2795,\r\n \"serviceTime\": 44.056000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35ac7265-602c-4e0b-8f2a-f15e82d98739\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:16.4855156Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4026,\r\n \"serviceTime\": 44.177,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2b8212ad-74d4-4908-8460-3cd1be3024a7\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:07.4613486Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 395.8116,\r\n \"serviceTime\": 138.3347,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"55e3ed79-b861-4c0c-b9cf-2731e38ebe49\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:12.9114949Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5981,\r\n \"serviceTime\": 44.6544,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb905ccf-b832-4341-ae8c-e73760282cfc\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:17.9854083Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7808,\r\n \"serviceTime\": 44.5336,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a63e0a33-df0d-4cbb-8cba-b86fa1f48d11\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:23.0458301Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2563,\r\n \"serviceTime\": 45.0255,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5d3e95cd-1791-4e36-87f5-c0ff7093ca60\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:28.1036528Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.112700000000004,\r\n \"serviceTime\": 44.7856,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c5316cb-a3be-46dd-97b3-52e77f029402\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:33.1857056Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8211,\r\n \"serviceTime\": 44.462700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0e0580df-1f3b-4e22-9f36-78a8ea641544\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:38.2480569Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.973400000000005,\r\n \"serviceTime\": 44.6374,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6d14612d-241f-44af-b95a-e5131ce360c1\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:43.2978427Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0844,\r\n \"serviceTime\": 44.7184,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f282f3d1-0f7a-48f2-a662-a19019eeda32\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:48.3426107Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.154,\r\n \"serviceTime\": 44.7695,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"09e66ac1-a0ed-4783-980b-64ec0f4eeb9f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:53.3968882Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.251200000000004,\r\n \"serviceTime\": 44.902,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"379b3d5a-225f-401d-9937-45268f174ed1\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:12.8515217Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 398.1062,\r\n \"serviceTime\": 121.47330000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"45aa1ba8-65ee-4cf3-9094-f8e4731317ae\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:18.2987239Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 304.712,\r\n \"serviceTime\": 303.6884,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74b03343-b1e5-4a6b-8679-a055013122cb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:23.6335632Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.173100000000005,\r\n \"serviceTime\": 44.8816,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1a12e39f-4e6c-4c69-b9fe-e1d8bb81b3e2\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:28.7087207Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9981,\r\n \"serviceTime\": 44.682500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c6bb88f6-ad1a-424f-9714-37918141764f\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:33.7837016Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 463.56120000000004,\r\n \"serviceTime\": 463.23510000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0870e32b-0000-48d1-b472-8d343479e5d0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:39.2839143Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0754,\r\n \"serviceTime\": 44.7648,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c1105a07-e831-43f1-b722-47dcf61da910\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:44.3328951Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0873,\r\n \"serviceTime\": 44.7849,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e421e48-4044-4d1a-acce-e4005cae6486\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:49.4186295Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.1498,\r\n \"serviceTime\": 49.7826,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"19f7d303-d6e0-4bd7-b287-f37576bf1dc1\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:54.5025262Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0163,\r\n \"serviceTime\": 44.7778,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"de832bf4-a658-4d75-8bd2-3302d72db1ef\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:59.5588223Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.624300000000005,\r\n \"serviceTime\": 45.3185,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"721cb51e-5606-4101-a022-faba581564db\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:02.5022138Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 406.3157,\r\n \"serviceTime\": 119.3263,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74e3377a-327f-41b6-9a13-76d0221a8977\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:07.9600002Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.9132,\r\n \"serviceTime\": 50.7672,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"133e2c6d-7015-4f61-81d8-0cfd3429a091\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:13.0344772Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.8297,\r\n \"serviceTime\": 50.5576,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6ab19885-206d-45aa-a50b-fa19b2d87fcc\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:18.0968121Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.256600000000006,\r\n \"serviceTime\": 50.9742,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bf3ae5ae-2114-4a59-b196-4e169f2fa2eb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:23.1569668Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 579.7566,\r\n \"serviceTime\": 579.4876,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d9c168c5-b1de-49fd-8d53-d8d24c39cfce\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:28.7854313Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.664300000000004,\r\n \"serviceTime\": 52.272600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"87621258-32f9-4107-ac3d-51d93151494d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:33.8648565Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2584,\r\n \"serviceTime\": 50.965700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1c16ad2f-536d-4ce6-846d-540d4dab7833\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:38.9293607Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.326,\r\n \"serviceTime\": 51.039,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c94e7739-b331-47dc-8fa2-1e7148e1c371\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:44.0160642Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.8968,\r\n \"serviceTime\": 50.620000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b25460c2-b0f2-4668-8bf6-44fc38d54984\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:49.0962158Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 760.6194,\r\n \"serviceTime\": 760.28780000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe26f0d9-77c6-4bc7-b8f1-b45f61a61137\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:45:54.291443Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 447.8064,\r\n \"serviceTime\": 156.6904,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"be9d3d9b-9821-4c77-bb34-5722653f77da\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:45:59.8117528Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.520500000000006,\r\n \"serviceTime\": 51.216300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c39b007-502b-4d70-9b48-e363c7892700\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:04.8818152Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.060700000000004,\r\n \"serviceTime\": 50.7376,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"065879c8-1961-45bf-93be-0fabc796d17a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:09.9448677Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.394000000000005,\r\n \"serviceTime\": 51.072500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2429bbb2-1974-4ab8-ace2-befd9901703a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:15.0190147Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.4009,\r\n \"serviceTime\": 50.9833,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bd589320-cae9-413e-881f-5c233f742a03\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:20.1146928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2235,\r\n \"serviceTime\": 50.929700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"58c5347a-5bbf-47d5-921d-7dfc3cb14f9c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:25.1753919Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.179500000000004,\r\n \"serviceTime\": 50.883,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bcc7ce2b-4bbd-4db2-ac7c-ba8a7be759ee\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:30.2288888Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2971,\r\n \"serviceTime\": 50.9486,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4fe954f4-aa2d-48cf-8c96-b7d0ea06c43f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:35.3073287Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.7498,\r\n \"serviceTime\": 50.442800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"14115e94-2416-4358-844a-d617eb10759f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:40.3737098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.274100000000004,\r\n \"serviceTime\": 50.985800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"24c81203-6f66-4056-8b68-50b57f849a90\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:08.3974551Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 447.3483,\r\n \"serviceTime\": 144.6286,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"05d73db7-4653-4a01-8a81-d1bf02a07f72\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:13.8954512Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.0107,\r\n \"serviceTime\": 50.919000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0597cc32-56fe-47ca-a8ad-de12e4ff472f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:18.9746185Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.372800000000005,\r\n \"serviceTime\": 51.086400000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f0d72091-3180-401b-bf92-8fb6f01be83b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:24.0289678Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.718500000000006,\r\n \"serviceTime\": 50.7085,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"97bebc68-9c36-41e4-bd5f-188769f329cd\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:29.1060524Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.877700000000004,\r\n \"serviceTime\": 50.586600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"af2c65e6-4b40-4af1-b172-cedc7e75479b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:34.1860982Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.189,\r\n \"serviceTime\": 50.916000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c86fa959-9dc2-47ee-8f28-b07ec9570b29\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:39.2746173Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.7864,\r\n \"serviceTime\": 50.5264,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9919152e-7844-4725-9c35-fc0f75977584\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:44.3392177Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.9097,\r\n \"serviceTime\": 50.583200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6e237b1e-1c31-42f1-8f74-69b8b48631b9\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:49.4107185Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0702,\r\n \"serviceTime\": 50.737,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04bc3d37-875c-46f9-9d39-1a59846c56f3\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:54.5854392Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 81.8165,\r\n \"serviceTime\": 81.2599,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0e76f31e-e2a3-456a-9f84-95f0ee1e1f08\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"13.84.222.37\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-12-18T23:59:27.7090827Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 605.1213,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"880542da-04db-4c61-908a-e4935fb7b365\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"24.16.12.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-02-17T01:48:26.5103607Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1408.3314,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4f11a600-28f9-4a7a-8320-081d065b7e6f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"24.16.12.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-02-17T01:48:28.1168562Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.77660000000000007,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"03778e13-21a9-4be7-aa61-17f19e3eadbe\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:35.6396071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.93210000000005,\r\n \"serviceTime\": 122.5634,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c0c6f122-0a6c-425c-a5dd-430cce1af78c\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:41.138847Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 321.0648,\r\n \"serviceTime\": 320.0695,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1211378f-19ca-47e0-9f76-545872c192ca\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:46.4925007Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0548,\r\n \"serviceTime\": 44.8068,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4c651dd8-08a7-4994-a876-961508b6c297\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:51.5553723Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4615,\r\n \"serviceTime\": 44.2085,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c6bb068f-f3e5-409e-8e7d-90d2acdfbb41\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:56.6182093Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 552.9133,\r\n \"serviceTime\": 552.6203,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"32203413-afe7-48c5-ab74-eaf8cc06db00\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:02.2014953Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.915400000000005,\r\n \"serviceTime\": 45.6299,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"79fb3924-de3d-4763-bd43-609c53fbc025\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:07.2691159Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.458600000000004,\r\n \"serviceTime\": 45.2472,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3be65a62-127d-4f6f-9cf9-8906e0d9806f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:12.3319698Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.395700000000005,\r\n \"serviceTime\": 45.158300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e70b19d-04e0-481a-836d-d4da94d13f2b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:17.3864336Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1896,\r\n \"serviceTime\": 44.9606,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ead71cb-1fd5-48b8-abda-24987b01ba6b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:22.4469264Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.124500000000005,\r\n \"serviceTime\": 44.8917,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e8b376a5-6b75-45fe-9d3f-bd58215b2f53\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:13.4598791Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 501.97150000000005,\r\n \"serviceTime\": 138.74790000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b02d842d-04f5-4719-8293-a1ed0f51a85d\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:19.0300682Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.459500000000006,\r\n \"serviceTime\": 44.4287,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6b4f1c3e-c350-4201-89b2-4459daf496b1\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:24.1198522Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.3566,\r\n \"serviceTime\": 44.1545,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9aa3334f-e466-4673-ae3e-fe09d22ce527\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:29.172766Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6377,\r\n \"serviceTime\": 44.3374,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8e651eeb-8eb8-4a4f-adda-cfd02927fc84\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:34.2621685Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.452400000000004,\r\n \"serviceTime\": 44.1133,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c5233ae6-955b-4df0-892c-fb2f55b28742\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:39.3416657Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.107800000000005,\r\n \"serviceTime\": 44.7882,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7836664d-4ce6-4361-a6d7-1e98ec4211e3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:44.419073Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.864200000000004,\r\n \"serviceTime\": 44.5897,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9dddfb4c-64d5-4f01-8150-ebbe0965c660\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:49.4910192Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7023,\r\n \"serviceTime\": 44.4453,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d462826-534a-4fba-943b-e276b25cbd32\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:54.5707344Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7397,\r\n \"serviceTime\": 44.4947,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe68fa2b-ceb9-4c00-a473-272a3ca5f8fb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:59.6347893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7686,\r\n \"serviceTime\": 44.5283,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"400b2c7f-174b-45c7-a1df-938d94df870b\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"POST\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 8846,\r\n \"timestamp\": \"2018-03-06T00:21:22.6262928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1669.5748,\r\n \"serviceTime\": 182.3805,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"16284a1e-1168-4673-abbd-f72cc145a756\",\r\n \"requestSize\": 416\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource-cached?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 673,\r\n \"timestamp\": \"2018-03-06T00:21:37.8407091Z\",\r\n \"cache\": \"miss\",\r\n \"apiTime\": 664.3346,\r\n \"serviceTime\": 44.769000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"01dc66d3-53ed-4b10-9e45-55a3ae8372da\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 623,\r\n \"timestamp\": \"2018-03-06T00:21:58.101651Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.5204,\r\n \"serviceTime\": 49.043600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4e3615c3-1a50-4920-b133-e695dfe4da35\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 619,\r\n \"timestamp\": \"2018-03-06T00:22:36.7630151Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.263600000000004,\r\n \"serviceTime\": 43.6993,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6fbdef2-ecb9-45ca-8c0a-2f88400417d5\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 621,\r\n \"timestamp\": \"2018-03-06T00:22:37.6557904Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1075,\r\n \"serviceTime\": 44.6768,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81643b9c-ac13-462f-afcc-4c0dae5cc703\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/modify-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"PUT\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 623,\r\n \"timestamp\": \"2018-03-06T00:22:56.632653Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5135,\r\n \"serviceTime\": 44.0843,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5daff206-55b4-4571-a5a7-369cea088dea\",\r\n \"requestSize\": 220\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:32.9983134Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 443.74870000000004,\r\n \"serviceTime\": 145.0343,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e540dbd9-e5a7-426c-86bd-694f87199028\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:38.5123495Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.449600000000004,\r\n \"serviceTime\": 46.354600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"db78ea4b-3d6e-4121-a1b9-f8b30a499891\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:43.5899145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.097300000000004,\r\n \"serviceTime\": 45.6918,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fb222074-4564-4414-94ef-a6f124b8e2ca\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:48.7050746Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3292,\r\n \"serviceTime\": 44.961400000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"130adf1e-d245-4fd0-9380-7ece2ce9833c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:53.7972278Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.8138,\r\n \"serviceTime\": 49.458600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"47dc4b3f-67df-46d4-97cc-4f39bc350e8c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:58.876912Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6143,\r\n \"serviceTime\": 45.1518,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74990ea2-3bc5-4c63-b25d-1074cc96a8a7\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:03.9616432Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.1632,\r\n \"serviceTime\": 45.816,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f26abcdf-a2b4-4ff7-83d8-f11e6c3ea545\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:09.0238097Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3892,\r\n \"serviceTime\": 45.0384,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7b84d569-7a56-4b7c-97ad-46cb14054eb4\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:14.0982217Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.578900000000004,\r\n \"serviceTime\": 45.193000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1f204982-61ff-4df5-b86f-ef7f98e59000\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:19.1552064Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3791,\r\n \"serviceTime\": 45.0306,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e1bb7279-1a3f-4d2c-aba4-e28f09895072\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:33.9046597Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 502.92010000000005,\r\n \"serviceTime\": 177.2782,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c7037320-8d09-4e2f-a844-88225032fbe1\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:39.4843419Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.4177,\r\n \"serviceTime\": 45.1438,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1358b55e-c9f9-4ff2-93aa-6e540e35b84c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:44.556317Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4699,\r\n \"serviceTime\": 45.124100000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1754c678-627a-4a22-9d0f-b2829888c82d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:49.6190272Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.295500000000004,\r\n \"serviceTime\": 44.9345,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"95de0112-fc89-46ce-ad60-1a7b57f57389\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:54.6793269Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.0069,\r\n \"serviceTime\": 46.665200000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2ef549e4-3e35-4266-9a6f-ee3111b621d1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:59.7603364Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.4697,\r\n \"serviceTime\": 46.1246,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9ce3db5d-ba5c-4711-9a55-ec531c6a2e59\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:04.8251708Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4183,\r\n \"serviceTime\": 45.087,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cec18c96-483b-42d9-8b34-86f8db046e91\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:09.9111691Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.5384,\r\n \"serviceTime\": 47.21,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1b78809b-42b8-40e2-a7e3-2ad9814f21bd\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:14.9921966Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5717,\r\n \"serviceTime\": 45.2254,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb23fb4f-40c3-4168-abfa-bbe0b3f2329d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:20.1094454Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8678,\r\n \"serviceTime\": 45.172900000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c733927-ed33-43c9-8d15-9e7ff4b23aca\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:26.0236456Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.7103,\r\n \"serviceTime\": 130.7047,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"955ce345-4a88-4dcf-8f53-65b2a9a2ea4d\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:31.5211793Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.677,\r\n \"serviceTime\": 45.3455,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8cef10e2-6974-451b-8453-d48a02eccab1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:36.5806191Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2734,\r\n \"serviceTime\": 44.9441,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2c894147-cc34-4b51-8890-b5bf86778d1a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:41.6501915Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2291,\r\n \"serviceTime\": 44.9056,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c0d3a5e2-37fd-4594-99d3-85d8691b134a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:46.7141306Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.458600000000004,\r\n \"serviceTime\": 45.0733,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"084d776b-a988-4f18-9465-42536420ffb9\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:51.7831264Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5916,\r\n \"serviceTime\": 45.2291,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b91c78ff-ab03-46f7-a8c3-2ff25bfcc304\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:56.8560678Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5809,\r\n \"serviceTime\": 45.2077,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"696700a7-778f-4276-8ed6-d023d598dacf\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:01.9197546Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8277,\r\n \"serviceTime\": 48.481700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8777ac4b-613e-49c1-853c-b5b1028aa315\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:06.9791547Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7539,\r\n \"serviceTime\": 45.400000000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"721fbbfd-1955-4434-91ab-960882514591\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:12.0699932Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6925,\r\n \"serviceTime\": 45.338300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ebda7389-34e3-45e4-8826-df94a92c2658\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:02.4243741Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 535.9414,\r\n \"serviceTime\": 156.6464,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81e0394e-dc87-4692-ae36-7a6f706f50e0\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:08.0829756Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.375600000000006,\r\n \"serviceTime\": 45.0304,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"03add177-ccd6-4a46-957d-67e86502a1d1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:13.1631893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 803.5901,\r\n \"serviceTime\": 803.14410000000009,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9c7efa9e-fb79-4738-9b72-8d4dbe94d435\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:18.9996826Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.765,\r\n \"serviceTime\": 45.3701,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0cf7de42-5d73-4074-a4c2-37aa4e2b88a4\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:24.0698632Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.2269,\r\n \"serviceTime\": 45.819700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"791866cb-ecf5-4ede-ae5e-021cefe7a5ef\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:29.1294056Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4129,\r\n \"serviceTime\": 45.024100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ee789cf-3f3c-4c6b-b116-b8c441608a80\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:34.2114081Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.914100000000005,\r\n \"serviceTime\": 46.4722,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f9ae6dd3-17d3-42b4-bbed-e7e823a5514c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:39.2798684Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.478300000000004,\r\n \"serviceTime\": 45.0461,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"73ae6962-817f-4de3-ac82-da1faea53c89\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:44.3449364Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.371900000000004,\r\n \"serviceTime\": 45.930800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8c51fa05-d73d-4af1-b739-91926aa0c028\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:49.4146075Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.711800000000004,\r\n \"serviceTime\": 45.2866,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e0a9c6b6-2260-483c-ad9f-b975d91beb0f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:40.2716749Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 489.8204,\r\n \"serviceTime\": 149.1651,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"897a4fd5-e68b-46d4-94f8-dc05ad625a4e\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:45.8822351Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.797000000000004,\r\n \"serviceTime\": 45.450900000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f114bbe9-503a-4e13-b39d-3d88b2b9043d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:50.957935Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.1867,\r\n \"serviceTime\": 49.771,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a71f5df5-ba3f-4e0d-9777-bf02d4b380ed\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:56.0170563Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.2212,\r\n \"serviceTime\": 47.8034,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"14482ec2-c42a-422f-a9d6-cc53850460a8\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:01.0963903Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.4153,\r\n \"serviceTime\": 46.969300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e7e41ca-b0fa-4334-ac74-8859b88e735c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:06.1468514Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6298,\r\n \"serviceTime\": 45.1113,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0a5a6b68-c871-4164-aa8e-20eb07b8d961\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:11.2160257Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.6511,\r\n \"serviceTime\": 48.2061,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64f23972-143b-41f9-a97a-37dc5ea9124f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:16.281159Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.0298,\r\n \"serviceTime\": 45.623400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"91bc16e9-61ff-4bd5-ae25-57e90deb9bcf\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:21.3623845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 58.850300000000004,\r\n \"serviceTime\": 58.3789,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"34987980-3cd4-4fb4-840d-cfe276ac8d8a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:26.4481834Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6161,\r\n \"serviceTime\": 45.2169,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fdb4022e-0219-4593-8b87-9d292f15a31f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:28.3247795Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 476.46540000000005,\r\n \"serviceTime\": 128.60150000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"250bb706-bd98-438b-8cf2-6f30094d6d8d\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:33.91856Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 53.106300000000005,\r\n \"serviceTime\": 49.315000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"264c826f-f970-4552-be42-8cf188f24c73\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:38.9896219Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3308,\r\n \"serviceTime\": 44.9335,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81b1bbdf-45e2-47cb-8c15-28989ebf7b7e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:44.0647053Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.376400000000004,\r\n \"serviceTime\": 45.9745,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0cd86352-bc22-45a5-a648-b6e1a7b8f8e2\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:49.1255782Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4392,\r\n \"serviceTime\": 45.0234,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"405e79de-4d4e-4103-be33-f13bdb0d236a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:54.1730088Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9938,\r\n \"serviceTime\": 45.5762,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e71b961a-22ab-4d2c-a176-523e9697f1e6\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:59.2586789Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.094,\r\n \"serviceTime\": 45.6379,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6b173c88-ef2e-4581-9fed-218e68b79b92\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:04.3181386Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.1668,\r\n \"serviceTime\": 45.766200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c906f257-d58b-4730-9335-7785b0319cf4\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:09.3826289Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.046400000000006,\r\n \"serviceTime\": 45.626000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"34c34007-da5f-497b-abf7-17147be45107\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:14.464029Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.544000000000004,\r\n \"serviceTime\": 47.1415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ea403222-34ef-4741-9ebc-30f552303bac\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"27.59.69.52\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-08-06T20:29:40.3623719Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1219.9305000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"07805b1a-a524-4b1f-a949-39414d54c991\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"27.59.69.52\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-08-06T20:29:41.9247481Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.5673,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c117e389-c4f2-4670-a525-acbcdb9826e3\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:00.2393123Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 785.66410000000008,\r\n \"serviceTime\": 146.6279,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"469a8730-1103-45a0-ac19-61655a18716d\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:06.1770014Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 53.764500000000005,\r\n \"serviceTime\": 51.7291,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"21e9387e-a338-4e5a-acea-05ad3bcbfa2d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:11.2298054Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0995,\r\n \"serviceTime\": 50.6897,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ed2459cc-f379-4c3f-a170-50e9ec35c537\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:16.3081588Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1344,\r\n \"serviceTime\": 50.7169,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5addf582-1a44-465b-8201-777e738d12ea\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:21.3754823Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.6274,\r\n \"serviceTime\": 50.233900000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7fa2e2d0-6371-412c-abe7-9ee0567fdcdb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:26.466235Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.1858,\r\n \"serviceTime\": 51.740300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"79281230-3ba8-46e3-8dc2-659d41527fee\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:31.5419775Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.741600000000005,\r\n \"serviceTime\": 51.341300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6c0adcf-15e1-4748-aef6-9c7c3ae5bac5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:36.6064268Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.811600000000006,\r\n \"serviceTime\": 50.3907,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"29e627be-6942-4f2b-8dc1-e3f5ad4f0626\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:41.6841436Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.139,\r\n \"serviceTime\": 50.7409,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"85e3d100-188a-4140-ac4c-08fd60fd50e5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:46.7524891Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3316,\r\n \"serviceTime\": 50.8864,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9f37c539-b54e-4b83-b7e3-de4ae0045479\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"POST\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"13.91.254.72\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 9082,\r\n \"timestamp\": \"2018-09-24T18:19:02.1258594Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1218.5258000000001,\r\n \"serviceTime\": 179.00400000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"399ee28e-22c9-4460-b37a-45e280172147\",\r\n \"requestSize\": 709\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:43.6900176Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 840.3682,\r\n \"serviceTime\": 138.6919,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c2d22d8b-7c2c-4083-bb31-6022a9433936\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:49.8574456Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.5322,\r\n \"serviceTime\": 45.173300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e123a6ac-3cde-4d76-b424-13fae9e9695a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:54.9248553Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.200700000000005,\r\n \"serviceTime\": 44.7513,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9c402537-9cb8-47fc-8711-53bc6be998c8\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:59.9689145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2036,\r\n \"serviceTime\": 44.8121,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bca90e96-87db-4eba-9ced-f358a7f854b5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:05.0346243Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.332300000000004,\r\n \"serviceTime\": 44.7917,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"353d8378-738f-489a-8694-0aca5e5d319b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:10.0906729Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4087,\r\n \"serviceTime\": 44.945100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f3dcdce1-1965-4612-acc6-8f889680a33a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:15.1604656Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8284,\r\n \"serviceTime\": 47.5934,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c129aada-baed-4888-a7ab-015bbda79145\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:20.2362852Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2582,\r\n \"serviceTime\": 44.7824,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"07861b4a-e5ad-4b14-a688-e3ea432dd1bb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:25.2813074Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3393,\r\n \"serviceTime\": 44.8344,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e30d99eb-bce0-4725-b885-d2ee2cc138cb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:30.3524683Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.023900000000005,\r\n \"serviceTime\": 44.6144,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7c7953c3-123e-434a-a7cf-c1d4c495f98c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:02:51.7475599Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 620.2874,\r\n \"serviceTime\": 138.6122,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"848cb6bb-4c0a-466e-8e80-65b79db6876b\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:02:57.5008919Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 654.3816,\r\n \"serviceTime\": 647.2155,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"39be53e3-03e1-446e-a536-9bd8f066b452\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:03.1927387Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0268,\r\n \"serviceTime\": 50.6313,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8c0ffb31-77f0-4bdd-bde7-7fc412118acc\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:08.2554062Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3784,\r\n \"serviceTime\": 50.9587,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"41a4321d-8a6a-41ee-8b61-c004ca1a9892\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:13.3198552Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.243,\r\n \"serviceTime\": 50.8222,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4741958d-7f96-4555-8571-f11e415f535b\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:18.3944268Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1293,\r\n \"serviceTime\": 50.7235,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a8c2b987-efc3-4c7d-9073-ba05f0ec7491\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:23.46343Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 161.0886,\r\n \"serviceTime\": 160.6605,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"08de177a-122b-4f06-9e7e-8eb855d6acb1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:28.6465235Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.457800000000006,\r\n \"serviceTime\": 51.0703,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"094ba009-0cd9-45b5-a8cc-00b4359f3499\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:33.7234559Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2781,\r\n \"serviceTime\": 50.869400000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e306581c-31b1-4733-bef6-1e3c4ec6c4db\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:38.7909047Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.5176,\r\n \"serviceTime\": 51.0685,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ba34bfa1-bf7f-4df4-930c-020dea6e6ba0\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:48.1646749Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 490.04760000000005,\r\n \"serviceTime\": 119.76060000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8b45b66-63da-4a13-9bae-faf64e14fab2\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:53.7851913Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.289,\r\n \"serviceTime\": 50.9699,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f6d2eba2-9b9e-4b10-8093-90654f427f51\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:58.8425343Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.5612,\r\n \"serviceTime\": 51.146100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cddd6b2d-b97f-4256-8dbb-060fe4379f1c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:03.9342563Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.9236,\r\n \"serviceTime\": 51.5127,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b50f33fb-92fd-44bb-8349-db7a85314b31\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:09.0158677Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0047,\r\n \"serviceTime\": 50.5762,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64ff8c51-43ce-403c-8272-bb308223718b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:14.0903047Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.887,\r\n \"serviceTime\": 50.4718,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c7827c41-de65-4dbc-9ade-cae1501dc743\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:19.1497844Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3555,\r\n \"serviceTime\": 50.904700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c08014fc-130f-4dc2-81ab-7a7c99402b1d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:24.212013Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1325,\r\n \"serviceTime\": 50.5178,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"558bfd05-6600-4be3-accf-b0a119d8df6f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:29.2741763Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.563,\r\n \"serviceTime\": 51.1619,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04732f6b-81dd-434a-910e-34ddc774238f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:34.3497066Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.871,\r\n \"serviceTime\": 50.470600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"685fa1b7-5801-4cf0-9785-a397ad5f07b4\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.79.57\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T04:48:56.5634549Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1059.0415,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"42e69a7a-d9ef-47de-a5b0-3ef19b97f87f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.57\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T04:48:57.7158893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.0246,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"128cea25-81cc-4988-86a7-776ee8a1bc29\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.79.95\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T05:14:04.8737942Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4081,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4f1c5d2a-8f24-48a9-bba1-0f911633da34\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.95\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T05:14:04.9262238Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.35200000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ee568d27-7a34-4496-afd8-650b904f0d70\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:07:09.9908045Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 205.0687,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"72bfd031-f4ae-4cb2-a8ab-f5f710c9a468\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:07:10.2322898Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3425,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"694037c9-a8d2-40c5-9582-5852fd72e9da\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.75.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:16:58.6234489Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.7294,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"005b9309-5246-4206-853d-18c801104550\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:16:58.6547003Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3128,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f210e1f4-8da0-481c-ba33-ab5b1ca277d7\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:28:36.9594385Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4398,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"07a56ceb-4a21-4d51-881d-bf71ffe0cbf2\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:28:37.0844207Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3906,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"bd76e6a2-82de-4817-8f01-f0821f0b58f1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:38:05.3110496Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.36610000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"95afa93c-788d-4ee7-a1ce-3f7a2365e1dc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:38:05.3603514Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.35600000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"513ba4f4-7cdd-440f-8a8e-273a6d9b7899\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T23:08:08.2174122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.5786,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"abd05b17-fd5e-41a5-9b6c-d35b76edaaaa\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-03T00:15:58.9637274Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4066,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f4bd419f-8980-4a58-98e2-833cccecb437\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:33:45.3499353Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1392.9443,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"69ce781c-b3a0-4056-9dc0-518af93b5db7\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.21\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:33:46.925386Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.5642,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"172ae5cb-5666-48c8-b1ba-125e4a00e40a\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.2\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:35:39.6061689Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3914,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"68a2aa66-cdf7-4a9e-8440-a061f65e7092\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.4\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:35:39.8424776Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3668,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"12496ed5-3ce7-49a1-8cd0-84bfb1515fa4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.147.54\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-20T17:00:06.9599649Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 848.85020000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"aaffe61b-aefa-4ef1-b557-c3bd6303e054\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.160.70\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-21T19:09:22.6319939Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 784.0877,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"974f95b4-d432-49a4-a5bb-81968cde4544\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.175\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-23T05:53:02.7411272Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 5.134,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ec984d2b-d807-4651-b7a3-14e882d63ff8\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.177\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-23T05:53:01.4807905Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1156.3908000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"8cb1e087-ce0d-4645-aeab-15b1db7634bc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.2\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-30T14:47:17.6551027Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1471.3045,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"73dba88c-ab47-4b23-b008-7961750e9004\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.6\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-30T14:47:19.3190094Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.1173,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"40f0cbc2-8907-4a19-bfc4-ec605cbaa063\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.236\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-01T00:36:05.2590774Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1198.5423,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b1c44cfc-1c8c-43b3-8a62-94212e31caac\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-07T06:36:54.0336636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1934.9740000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"20ce2c02-1fbc-4e9a-9dc3-177c5c333516\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.133\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-07T06:36:56.1057899Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.2423,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"be784018-6aa4-4a71-8b25-db3d310b56d6\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T04:24:54.8665058Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.318,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b63295cb-3da4-408a-aa41-8514d8cbd288\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T04:24:52.256733Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2568.2388,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"87c9d9a8-46f2-4775-98aa-fc6a9ba785ad\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T19:50:54.6965847Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 201.3605,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"3edd5e9b-2ff1-43d6-b168-492f131d407a\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T19:50:54.9816892Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.34440000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e62be1ca-92f6-4140-bf04-bf01e4d5c230\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-13T08:24:30.0870791Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2261.6673,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a440e471-ed1d-45b1-a588-57caa1a80fe1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-13T08:24:32.3999542Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 3.5024,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"70b0bf8c-4842-4c70-8477-41fbe3e99ec0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-14T06:50:44.7086184Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 236.478,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"3db5fa8e-690e-48ec-a794-0c979a1798de\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-14T06:50:45.2374574Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4097,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"de3d99ce-eff6-4014-a122-c0806c16bd49\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-20T21:26:37.4142938Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1166.4887,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"2e5eeb08-80ed-4607-9be4-3a6501655801\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.28\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-20T21:26:38.6855534Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1183.6191000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"bc071fcb-1edb-4f6b-b84d-8fab125abf00\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-25T13:59:35.4833806Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1291.6733000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b99fad8d-437d-45bd-86a6-989de99c1f28\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-25T13:59:36.9836297Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.2974,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"655ed22a-ecd9-487a-8547-3efc9af2b0d5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-30T22:58:15.1692299Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1398.3948,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"abf606ae-11f4-4a12-aa3a-dfdc15149eae\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-30T22:58:16.7557546Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0701,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"723cb3fa-6c31-4d6c-9d72-d58dfb5a62c1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-06T07:56:15.5579037Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1656.3501,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e82bb153-100f-4191-97c5-2607a85bc777\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-06T07:56:17.4492568Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.1127,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"64e68428-9ade-43cb-b68d-328040af6762\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-14T05:59:03.3064592Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1233.4746,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"937bd6f8-fbb2-4fd7-85c0-7707c9a74972\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.27\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-14T05:59:11.5869906Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0654000000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c3d05cb9-130c-4144-b8dc-e532c5bb1492\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.113\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-15T12:53:44.1910452Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1626.9659000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"0f81b200-77d1-46bc-a56a-3047494c8c61\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.109\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-15T12:53:45.9979089Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4339,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"32037b47-f1c0-4e30-9053-1446a261d0d9\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.111\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-19T20:55:14.0299211Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 29.000500000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a80f8e2b-4a23-42df-a5dc-6c5f567151af\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.109\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-19T20:55:14.8462111Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3936,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7776a947-0cfd-4ed4-a6d0-0b22feb432dc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-25T04:54:15.9599298Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 862.2427,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"523b5c3c-d2f0-4c34-9279-89c961602981\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-25T04:54:17.0380664Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0547,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"77ad4546-121b-4146-8a91-46417403fad5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-29T19:16:40.8507321Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 948.96250000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f0e90d60-4c25-4b0d-893c-e0fcece680fc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.158\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-29T19:16:40.1435871Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.38420000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4bd73253-074d-45ee-9d85-42d83de83283\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T05:10:23.8522476Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4176,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"12c89dc5-f645-43b4-b352-24b4bab77a3b\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T14:09:20.8225521Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 4.4275,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"0ad134c1-ad41-4fc5-b8e4-2e23aea35409\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T14:09:21.3089962Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.38320000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e31bbc77-5973-40e8-8afb-709316162cd3\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-05T19:08:18.9749957Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 898.4899,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"613b1920-5f3a-4104-8b9d-a1dd2d4bd5d4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-05T19:08:20.0686957Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 937.22790000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e7d5d92f-cd1b-48ed-9bfa-ea9dbc016339\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T06:12:56.1770254Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.9601,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7b3a6406-5b12-4642-8ff6-adfbccce856d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T17:07:07.6751833Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 3.0537,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b7b0c470-93c8-4137-b15a-85c48d5d1d9d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T17:07:07.9094418Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3542,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c732f1ed-9dcd-4e0c-9db2-cde7773d3577\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.113\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-12T23:42:01.1676845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"23fa546a-5c30-49a6-befb-8a5dff4ef845\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.111\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-12T23:42:01.3551648Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4455,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"1cb0541c-5663-49ed-84e5-1cd15005e5da\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-13T23:51:31.4547371Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.5057,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b87325fc-6253-4279-91d4-c74718ffc554\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-13T23:51:31.5172079Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.341,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"5e7389e8-aa08-456d-a514-4ea62b2e2ae0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T12:36:03.8821071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1340.9502,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"555e7d7f-02c7-4f0d-a6cb-2853b17fa0d4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T12:36:05.2439219Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 8.0977,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"08b7e44a-d921-44f3-b6bc-2e44cae51aa8\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T16:27:29.8478315Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1122.8238000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"cb300fd9-681e-4e27-bb96-799d55d30447\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T16:27:29.7019097Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.41540000000000005,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c014a93b-d9e6-4400-a42f-7c90d1474a3d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-11T15:18:05.3590504Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1037.3471,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"03c6861f-2f2a-4fe1-a54c-68626a0ad994\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.183\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-11T15:18:06.5465845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.9946,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"59ab7961-3e60-4f0c-818d-77d3c53aef84\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-12T18:27:09.8717598Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3714,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"5dbdb46a-e060-41d2-b65d-77371304d7c6\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-12T18:27:09.9185767Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.29150000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4d4fb036-6018-4397-85ac-1b591ed8ab0e\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-15T03:03:02.5539071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 998.4266,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ee43fa27-bcec-4018-80ea-79a6e81bc9b0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-15T03:03:03.585353Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 8.7083000000000013,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"356ffdce-392c-40d0-9f8f-4e44c41763c5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.129\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-18T06:02:54.6273481Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 12.2417,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"45ee60cc-a283-49c5-9ac1-ffadd7a9941f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.129\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-18T06:02:53.486558Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1100.5928000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"52edcbea-8588-48c3-bbf3-2072c14f2548\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-28T02:42:10.9671769Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 980.5786,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"fa40e3ed-1ed3-418f-bf5c-abf5dc72552d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.117\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-28T02:42:12.1471696Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 830.3429,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"247461fb-6b44-4d4d-a598-a4631369636e\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.177\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-03T02:44:23.7532668Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1010.0742,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ef824e5c-99a1-4886-b861-f063757fdcce\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.177\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-03T02:44:25.347049Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.5324,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"d4302c46-9c81-4a24-980a-ba943b494e3b\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T05:24:10.3622424Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 861.87250000000006,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"8624f234-0de2-4b86-aa68-892112caa5b0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T05:24:11.7216314Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.1321,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"9688fc16-f088-42f0-8cfa-8ba78ce2064c\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.131\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T15:21:34.5554395Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.399,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"fb8a85b9-f9bd-4e1f-8faa-968a2979aaab\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.131\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T15:21:34.5866801Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3371,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e4429b24-e305-4ea7-b207-1c34e40755fd\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T19:20:01.3389407Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3855,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7fec0fd6-651c-4e77-957f-e9c626bdd487\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T19:20:01.3701917Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.22510000000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"dbafcf6b-d483-44cc-bf5c-04b54e5330dc\",\r\n \"requestSize\": 0\r\n }\r\n ],\r\n \"count\": 391\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:41:39.6451795Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1418.9536,\r\n \"serviceTime\": 112.6254,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"8c4eaa7f-ce17-4f9a-9ab9-f4eedf6e17ea\",\r\n \"requestSize\": 329\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:41:51.2325153Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.9179,\r\n \"serviceTime\": 44.8641,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"f87fbee9-dcfa-469c-810d-99dbcba3338b\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:42:01.3302281Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.538000000000004,\r\n \"serviceTime\": 44.9391,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"f351cc24-56bd-450f-abc5-b4737764cd13\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:42:11.427289Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5798,\r\n \"serviceTime\": 45.0698,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"edad4aac-202e-43f7-8174-9700e5d79e65\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:42:21.5102246Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.363600000000005,\r\n \"serviceTime\": 44.8117,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"a69fb607-1c94-4334-a3bd-3c35ebb0d975\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 429,\r\n \"responseSize\": 174,\r\n \"timestamp\": \"2020-02-07T01:42:31.7713629Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 98.0087,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"412053b9-20a0-4fa4-9d54-1a54f6236284\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:42:42.2269383Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 163.095,\r\n \"serviceTime\": 162.5107,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"aaefe4c1-3217-446c-8720-700680e0dfc1\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:42:52.4548887Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9106,\r\n \"serviceTime\": 44.2933,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"aef30999-63e8-48aa-b538-b367e270df3c\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:43:02.5512853Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.8412,\r\n \"serviceTime\": 51.2312,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"c135b763-dc13-4793-b681-57a608272e20\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:43:12.662048Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.955600000000004,\r\n \"serviceTime\": 51.3391,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"765db8c5-d045-4bf6-96d4-08245462199e\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:57:32.4683027Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 120.78920000000001,\r\n \"serviceTime\": 120.0801,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"43b4dd8d-e156-4430-be5e-b21e481dec8f\",\r\n \"requestSize\": 329\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:57:42.6436624Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.587,\r\n \"serviceTime\": 51.014900000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"df4e8660-c1cc-4827-a1ec-ee20218e412a\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:57:52.7453357Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.025200000000005,\r\n \"serviceTime\": 50.3361,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"2007e508-081a-404e-b771-751db212a699\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:58:02.8478041Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1993,\r\n \"serviceTime\": 50.7181,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"a6bb4314-13e6-41c8-8edd-aa7cef760ef2\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 413,\r\n \"timestamp\": \"2020-02-07T01:58:12.9673535Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.831700000000005,\r\n \"serviceTime\": 50.2624,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"15f8a22a-2040-4a3d-82ae-431bb3080d7a\",\r\n \"requestSize\": 305\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice20190101.azure-api.net/echo/resource?key=f01011258be443508acefd69d070c579\",\r\n \"ipAddress\": \"131.107.160.55\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 429,\r\n \"responseSize\": 176,\r\n \"timestamp\": \"2020-02-07T01:58:23.0715136Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.72500000000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"requestId\": \"716ccf36-4e51-4841-b476-b7193af56d4c\",\r\n \"requestSize\": 0\r\n }\r\n ],\r\n \"count\": 16\r\n}", "StatusCode": 200 } ], @@ -650,7 +779,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SignInSettingTests/CreateUpdateReset.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SignInSettingTests/CreateUpdateReset.json index 914e41323868..d3e05037ab69 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SignInSettingTests/CreateUpdateReset.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SignInSettingTests/CreateUpdateReset.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7a1698dc-b738-42ae-b075-4a407ea6ac31" + "ba770ab3-314a-4153-8c57-877f1c571718" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a678db58-7726-4669-bc87-cc24e86a588a", - "e6136ff9-ecf8-405b-8908-89a71c636564" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "48c69d57-6705-44ed-aa89-a00baefcb27e", + "032043eb-0b41-41a2-93c6-5066c49d062a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "316a620a-b745-4bd1-935d-37ac81254e29" + "0905da11-c300-4620-847a-cc92fb6f083f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020439Z:316a620a-b745-4bd1-935d-37ac81254e29" + "WESTUS:20200207T005715Z:0905da11-c300-4620-847a-cc92fb6f083f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:38 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b608c12-53b9-47dc-9301-1ef94c719845" + "90e16e60-7fa6-4087-95cb-831776a6f019" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54e69b57-e8ea-4125-9c7a-176c638a5467" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "33c8b2df-77f8-4665-9f5a-1f00c8c2d50a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "24d255cb-00d8-402c-bd40-9ae20714ae06" + "3eae7aa9-c262-45d1-9b7c-baeafdacf9ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020439Z:24d255cb-00d8-402c-bd40-9ae20714ae06" + "WESTUS:20200207T005715Z:3eae7aa9-c262-45d1-9b7c-baeafdacf9ed" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:38 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,64 +136,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ25pbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9d09bc-fb93-4369-b004-9ad7709bbec0" + "2e15a389-0f52-4e76-b0a0-3cde2b7b48d5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcBs=\"" + "\"AAAAAAAAAAA=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "136ed8b4-7e17-4d60-8980-f7a2907e4f5a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b63a0c15-311c-4c24-bee6-a6061ba758b3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-correlation-request-id": [ - "3545dea4-3bf3-438e-ba6f-b1e4d5f64a38" + "203c0404-6384-4e48-8adb-7b1912147a6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020439Z:3545dea4-3bf3-438e-ba6f-b1e4d5f64a38" + "WESTUS:20200207T005715Z:203c0404-6384-4e48-8adb-7b1912147a6b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:39 GMT" - ], "Content-Length": [ - "311" + "454" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,64 +202,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": null,\r\n \"userRegistration\": null,\r\n \"enabled\": false,\r\n \"termsOfService\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ25pbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8e7a090-4085-4bb8-ad2b-b538b4620f6b" + "cf0e294e-019b-429b-9737-e63c2338c063" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcEU=\"" + "\"AAAAAAAACag=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28146fba-ed28-4332-a6d0-a7c35aa4874c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1d6e0984-8583-405d-a6a8-00161c9af3cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11989" ], "x-ms-correlation-request-id": [ - "97870e12-5012-44b7-8f83-c5595b2f8d01" + "f732d829-d427-4841-a9f1-67f04bef9a4b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020440Z:97870e12-5012-44b7-8f83-c5595b2f8d01" + "WESTUS:20200207T005717Z:f732d829-d427-4841-a9f1-67f04bef9a4b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:40 GMT" - ], "Content-Length": [ - "311" + "453" ], "Content-Type": [ "application/json; charset=utf-8" @@ -268,26 +268,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": null,\r\n \"userRegistration\": null,\r\n \"enabled\": true,\r\n \"termsOfService\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ25pbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "436f3f81-7034-4d15-9d6f-5bd872592b7c" + "27260c6b-444c-400a-a537-6ec25945f7c9" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,38 +300,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:15 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcEQ=\"" + "\"AAAAAAAACac=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1159e7c9-98f1-4d94-be1a-3a42efb5144d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6daa1c63-91ac-4258-86f6-311a7eeaeb55" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "c671faa0-62ab-4aca-bcaa-752f8ca5c491" + "40f4dd5c-889e-432c-93cb-83dd85eeebe8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020440Z:c671faa0-62ab-4aca-bcaa-752f8ca5c491" + "WESTUS:20200207T005715Z:40f4dd5c-889e-432c-93cb-83dd85eeebe8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:39 GMT" - ], "Content-Length": [ - "312" + "454" ], "Content-Type": [ "application/json; charset=utf-8" @@ -340,62 +340,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": null,\r\n \"userRegistration\": null,\r\n \"enabled\": false,\r\n \"termsOfService\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ25pbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c2e6421-c535-4a40-9985-4566d7f52f5b" + "078f3ab9-00de-49b5-9f65-2ff3bf8b8bbe" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:15 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcEQAAAAAAAAAAA==\"" + "\"AAAAAAAACacAAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc906fe4-cc01-4972-aa62-22eabb6f801a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "92b0ea33-a980-447d-af97-3ab5c7c65ef4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-correlation-request-id": [ - "6c4668ee-4c1c-41f2-a4cf-54262133b7a8" + "b0e40c8f-432b-4f82-bd41-33ebaf046913" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020440Z:6c4668ee-4c1c-41f2-a4cf-54262133b7a8" + "WESTUS:20200207T005715Z:b0e40c8f-432b-4f82-bd41-33ebaf046913" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:39 GMT" - ], "Content-Length": [ "0" ], @@ -407,25 +407,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ25pbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1088abfb-b9c2-4e50-8319-1bb5c68ff890" + "bb0572e9-053b-4762-8c2b-f7ab658584ff" ], "If-Match": [ - "\"AAAAAAAAcEQAAAAAAAAAAA==\"" + "\"AAAAAAAACacAAAAAAAAAAA==\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,33 +438,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:57:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "857576cb-5325-4380-96d4-c675d161fc9e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bcfecb87-3a4e-4d0c-afca-694f87d8bd3a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "ac5be6f0-1b21-4447-9656-339e81a4316b" + "c5167db8-5642-4ce1-bdc3-da01b401f96b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020440Z:ac5be6f0-1b21-4447-9656-339e81a4316b" + "WESTUS:20200207T005716Z:c5167db8-5642-4ce1-bdc3-da01b401f96b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:40 GMT" - ], "Expires": [ "-1" ] @@ -479,7 +479,7 @@ "TestCertificate": "MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SignUpSettingTests/CreateUpdateReset.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SignUpSettingTests/CreateUpdateReset.json index 1137b41b0915..f0a4a1d2f331 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SignUpSettingTests/CreateUpdateReset.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SignUpSettingTests/CreateUpdateReset.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3d330f04-fcb3-4ecb-9ab4-615721a70ff0" + "a1747d36-8d88-4287-b234-8586438c351b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:42 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3005596-33d5-4baa-80c7-da4add15bd9c", - "f89d9f3f-5150-4348-81af-8dd1cedbb171" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "38d69aa4-ca17-4ef7-8840-808d3715e1eb", + "4281d352-889e-43ed-a0e3-77370a37b2bc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "3b1a3f82-62dc-422e-982a-b37ec88838da" + "ab520620-9895-4ffa-8de0-8bf8298749ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021436Z:3b1a3f82-62dc-422e-982a-b37ec88838da" + "WESTUS:20200207T010143Z:ab520620-9895-4ffa-8de0-8bf8298749ba" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:35 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21594df0-7df0-4ab2-af6b-e940c310a0f9" + "2135aaed-2327-4886-ac0c-eb21c8aa1bbe" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:42 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b50697b6-da59-4514-8acf-9895c133c42a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "94ffacd7-56cc-4a2e-bd1a-f10ba8c89980" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "7ccd37b4-56c1-442a-994e-256fb6027158" + "7f6ce404-38b5-4d90-99bb-a1e55c6bbaa1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021436Z:7ccd37b4-56c1-442a-994e-256fb6027158" + "WESTUS:20200207T010143Z:7f6ce404-38b5-4d90-99bb-a1e55c6bbaa1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:35 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,64 +136,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ251cD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b364bc64-4f67-4bff-8af2-121f67ab485a" + "236707df-bc48-4e63-97bd-5fb03b18ba4f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:42 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAQMkACAAAAAAAAA==\"" + "\"AAAAAAAAAPgFKAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9fda9891-63a0-410d-aefb-8a8d27017b53" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5cc66dcf-c131-493e-bc15-7503db9ae3bf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "7818106f-bb22-407d-be87-364ebd82a41e" + "ab804dd9-4f92-48d9-9367-a08c3c6aa6f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021436Z:7818106f-bb22-407d-be87-364ebd82a41e" + "WESTUS:20200207T010143Z:ab804dd9-4f92-48d9-9367-a08c3c6aa6f4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:36 GMT" - ], "Content-Length": [ - "423" + "535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,62 +202,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signup\",\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"text\": null,\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signup\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signup\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": null,\r\n \"userRegistration\": null,\r\n \"enabled\": true,\r\n \"termsOfService\": {\r\n \"text\": null,\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ251cD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ca9bf58-ab62-4b2f-afcf-28030f67c443" + "e955e06d-7ea4-48dd-81a4-21ca5095e436" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:42 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAQMkACAAAAAAAAA==\"" + "\"AAAAAAAAAPgFKAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38b6484e-ca58-4c3b-a704-266050569d93" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "dc4e7b4a-3b76-4471-aa58-66a342f1ccd7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "ae7358c9-7ab9-4e22-a8b1-0ce25c105233" + "8e20d21b-ff75-4d11-97f8-694ab2a6eaa7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021436Z:ae7358c9-7ab9-4e22-a8b1-0ce25c105233" + "WESTUS:20200207T010143Z:8e20d21b-ff75-4d11-97f8-694ab2a6eaa7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:36 GMT" - ], "Content-Length": [ "0" ], @@ -269,58 +269,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ251cD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "330426ff-b337-40b5-b045-0fbf341c8446" + "a2d6469c-76ca-4f41-bc60-11d88d9858e1" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:43 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAQMkACAAAAAAAAA==\"" + "\"AAAAAAAAwkBoNwAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87518af7-ec3f-4cca-bb91-10560aa409bb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d75d997f-f028-402a-9c34-93e3d4e2380f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-correlation-request-id": [ - "0cc058bf-cc4a-4994-821f-094aca812d77" + "d36b7970-e68d-4f7d-9e18-bd4497d65aa9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021437Z:0cc058bf-cc4a-4994-821f-094aca812d77" + "WESTUS:20200207T010144Z:d36b7970-e68d-4f7d-9e18-bd4497d65aa9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:37 GMT" - ], "Content-Length": [ "0" ], @@ -332,22 +332,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ251cD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10b86b55-4ddc-4fbe-ba08-2705e040f4d0" + "2458aaa8-fc16-457b-b3e2-4e136099c642" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,38 +360,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:43 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAQMkACAAAAAAAAA==\"" + "\"AAAAAAAAwkBoNwAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3b9410f-9552-4689-96a2-462e6d7d241a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "04f49ddf-d400-4785-8e63-8f47e563b8ab" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "803a4c4c-245c-4eaa-9529-a0dfba1ec446" + "619a8ac7-8d7b-4253-b025-949c0c761e51" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021437Z:803a4c4c-245c-4eaa-9529-a0dfba1ec446" + "WESTUS:20200207T010143Z:619a8ac7-8d7b-4253-b025-949c0c761e51" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:36 GMT" - ], "Content-Length": [ - "423" + "536" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,68 +400,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signup\",\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"text\": null,\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signup\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signup\",\r\n \"properties\": {\r\n \"url\": null,\r\n \"validationKey\": null,\r\n \"subscriptions\": null,\r\n \"userRegistration\": null,\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"text\": null,\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3BvcnRhbHNldHRpbmdzL3NpZ251cD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"termsOfService\": {\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bf588b02-f7e3-46a6-a95b-be3c17b688ed" + "ff4fae13-05ad-4f0b-b66f-80f4d5b16442" ], "If-Match": [ - "\"AAAAAAAAQMkACAAAAAAAAA==\"" + "\"AAAAAAAAwkBoNwAAAAAAAA==\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "140" + "139" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:01:43 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30fa3483-9f64-470a-8403-36b55f7ec8a3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "781521eb-f334-45e2-99c1-c78c8d590976" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "15ec1ed5-e9d1-4ee3-a843-8d4ee4ab8235" + "9e72ae57-74b5-4bbb-9ae7-20a169fae040" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021437Z:15ec1ed5-e9d1-4ee3-a843-8d4ee4ab8235" + "WESTUS:20200207T010144Z:9e72ae57-74b5-4bbb-9ae7-20a169fae040" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:37 GMT" - ], "Expires": [ "-1" ] @@ -476,7 +476,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json index 2581935e6801..69146dd68f78 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90b801ef-9c77-49f2-bc3f-c9a8d968aecc" + "94e89714-ed1a-4081-832c-d69137bb0c31" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:11 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cadeb09-2d7d-4172-b643-b33e0bfef567", - "f2a95de4-9d29-4c3f-ab6d-8edd22801f82" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0ac33714-d8ad-4699-b91b-aae4df93f88a", + "663fa637-45de-4747-b5ed-e08f1aeb49cc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "8276aced-a7d5-483b-8274-f49c354b9f21" + "53846496-e66e-4a21-b696-d6aabf4350df" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210302Z:8276aced-a7d5-483b-8274-f49c354b9f21" + "WESTUS:20200207T010711Z:53846496-e66e-4a21-b696-d6aabf4350df" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:02 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a915418c-87e7-4245-b4a9-943787a33e2e" + "c3c9cce5-5a4f-4c03-9c7b-34ad22c66281" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:11 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6ab78eb-e846-4552-b94d-90685785076d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8a2943a7-9c52-4b77-aa0f-931bfaf39ba7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "a040087e-1320-4f76-9008-83c7a5b15eaf" + "d31c6ab0-8f62-44f1-bcf6-63c92b6c2cb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210303Z:a040087e-1320-4f76-9008-83c7a5b15eaf" + "WESTUS:20200207T010711Z:d31c6ab0-8f62-44f1-bcf6-63c92b6c2cb5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:03 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c69d604-3ef0-4a7d-b6a6-4bad3240058d" + "ab52e232-96cc-420a-a9da-283edcae0f26" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28d04e14-cbe9-4131-9066-eb53428767f2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4bf52a25-0806-49e0-9ffd-d5e2165a526e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "c082b615-8ee6-403a-92d9-29074405cb2b" + "247b4377-9a6d-4f26-82ff-807471c8a08f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210303Z:c082b615-8ee6-403a-92d9-29074405cb2b" + "WESTUS:20200207T010712Z:247b4377-9a6d-4f26-82ff-807471c8a08f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:03 GMT" - ], "Content-Length": [ - "3212" + "3290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"secondaryKey\": \"088c12c96e8e4d5198a09c426f134bd0\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-11-30T15:31:31.727Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"024e1b953e5e4a50884eae548c7313c5\",\r\n \"secondaryKey\": \"afd42ecf30674e39990777c7b012dac9\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e3cad2f4acd5f008a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:19:59.283Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"f01011258be443508acefd69d070c579\",\r\n \"secondaryKey\": \"83fe51906f2f4d4281111837d735a372\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/5e3cad304acd5f008a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e3cad304acd5f008a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:20:00.14Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"d60841112eea45c0845b3263acad4cdc\",\r\n \"secondaryKey\": \"c2066cce5a66414890a227c86212b172\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:43:59.007Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"1dd3cb3e68814ce1a99e158ef549bcf2\",\r\n \"secondaryKey\": \"3cf484047874454598830f4d92c88c70\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee22d1e3-af24-4b2e-8bbf-2df3fe21e04c" + "46c036e1-71de-455e-aca5-c1e2c07d970f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0a92048-7dd0-4a69-b139-fadfbb6ced18" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "99a461c6-47ce-4e96-ad13-5b9223b317fc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "09ba4c26-aa35-4b2e-b2a7-5dfd2cd3dd06" + "0b77ddfb-93c5-466f-abeb-0b61267277e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210303Z:09ba4c26-aa35-4b2e-b2a7-5dfd2cd3dd06" + "WESTUS:20200207T010712Z:0b77ddfb-93c5-466f-abeb-0b61267277e9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:03 GMT" - ], "Content-Length": [ - "1403" + "1450" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,64 +262,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e3cad2f4acd5f008a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:19:59.283Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"f01011258be443508acefd69d070c579\",\r\n \"secondaryKey\": \"83fe51906f2f4d4281111837d735a372\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zLzU5NDQyZGFiNzhiNmU2MDA4NTA3MDAwMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/5e3cad2f4acd5f008a070001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvNWUzY2FkMmY0YWNkNWYwMDhhMDcwMDAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96001a23-e050-4974-8fcf-a98c08551760" + "c2f1d358-928c-46c7-9de8-93f5b9edea6a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:12 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAJy0=\"" + "\"AAAAAAAACOc=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29e5d04b-9e0a-4f96-9036-7d4b53eaa21c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ff760aa4-a832-48e7-a106-0114b3fdbbf0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "bdb094b1-065a-4470-90e6-cc2974d73f53" + "021b6e9e-2fba-4461-8552-e537fe54e218" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210303Z:bdb094b1-065a-4470-90e6-cc2974d73f53" + "WESTUS:20200207T010712Z:021b6e9e-2fba-4461-8552-e537fe54e218" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:03 GMT" - ], "Content-Length": [ - "1046" + "1070" ], "Content-Type": [ "application/json; charset=utf-8" @@ -328,29 +328,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e3cad2f4acd5f008a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:19:59.283Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"f01011258be443508acefd69d070c579\",\r\n \"secondaryKey\": \"83fe51906f2f4d4281111837d735a372\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionsLimit\": 2147483647\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0cf63555-072b-45ba-8ea1-09135036452d" + "2ae2f5c8-5183-4fdd-ba9c-99d8e91f69f1" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -363,33 +363,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:12 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e44d8688-b217-483d-8327-143314270c9e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d09607fd-842e-4424-92eb-e8d91cb5a044" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "5f1a2a48-deea-4022-8751-c60dace63848" + "76cea8d8-ca16-44ce-89d0-81e00a12b290" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210303Z:5f1a2a48-deea-4022-8751-c60dace63848" + "WESTUS:20200207T010713Z:76cea8d8-ca16-44ce-89d0-81e00a12b290" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:03 GMT" - ], "Expires": [ "-1" ] @@ -398,66 +398,66 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName4049\",\r\n \"primaryKey\": \"newSubscriptionPK5050\",\r\n \"secondaryKey\": \"newSubscriptionSK6261\",\r\n \"state\": \"active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": \"newSubscriptionName9228\",\r\n \"primaryKey\": \"newSubscriptionPK9086\",\r\n \"secondaryKey\": \"newSubscriptionSK3593\",\r\n \"state\": \"active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cd0b400-e64d-4c10-ad79-c91bc8beb9fc" + "d19590e1-92aa-46a4-b885-9943307697db" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "541" + "557" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAexQ=\"" + "\"AAAAAAAAC3g=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78b1d6a1-11d7-43ea-b7b6-621966647607" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3699d1ee-7ab4-4d4a-80fe-34582def7d6e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "141c5e38-b0cf-42d4-9fd6-791c620007c0" + "aa779f61-5ff0-4673-be6a-1f043c7fa971" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210304Z:141c5e38-b0cf-42d4-9fd6-791c620007c0" + "WESTUS:20200207T010715Z:aa779f61-5ff0-4673-be6a-1f043c7fa971" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:04 GMT" - ], "Content-Length": [ - "1455" + "1488" ], "Content-Type": [ "application/json; charset=utf-8" @@ -466,64 +466,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName4049\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.978867Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK5050\",\r\n \"secondaryKey\": \"newSubscriptionSK6261\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId7613\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:19:58.283Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": \"newSubscriptionName9228\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T01:07:13.9243543Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK9086\",\r\n \"secondaryKey\": \"newSubscriptionSK3593\",\r\n \"stateComment\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60cf1c3c-da44-4c13-8159-53452933e633" + "668cb427-a026-4c42-839e-510b2898d928" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAexQ=\"" + "\"AAAAAAAAC3g=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf100996-b4c8-4430-9018-1e6edd453e4a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "eeac7ba7-1c2a-4e14-a17c-2a179c86a9cd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "b0ef0fde-f12e-43d7-b15c-81f060b212fe" + "ac1f1c9d-e6ef-46dc-982b-8dda2df1f76a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210304Z:b0ef0fde-f12e-43d7-b15c-81f060b212fe" + "WESTUS:20200207T010715Z:ac1f1c9d-e6ef-46dc-982b-8dda2df1f76a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:04 GMT" - ], "Content-Length": [ - "1038" + "1063" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,64 +532,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName4049\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK5050\",\r\n \"secondaryKey\": \"newSubscriptionSK6261\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId7613\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": \"newSubscriptionName9228\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T01:07:13.923Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK9086\",\r\n \"secondaryKey\": \"newSubscriptionSK3593\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0542a488-d921-4a9e-a386-a29992509b0a" + "8f445051-ffd7-489d-aa42-3b69a013b8f4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAexc=\"" + "\"AAAAAAAAC3s=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a798360b-f89d-4a77-a01d-b11f1cc8668f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3c60dcfc-fcb1-4f48-b3ea-6981b62ce8d4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "044a3007-afba-4fb5-b794-a560e94aef67" + "b3cfe85f-697d-465e-b16e-cfff529f68b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210305Z:044a3007-afba-4fb5-b794-a560e94aef67" + "WESTUS:20200207T010716Z:b3cfe85f-697d-465e-b16e-cfff529f68b1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:05 GMT" - ], "Content-Length": [ - "1050" + "1074" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,64 +598,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName8075\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"patchedPk9058\",\r\n \"secondaryKey\": \"patchedSk6915\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId7613\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": \"patchedName4972\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T01:07:13.923Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"patchedPk662\",\r\n \"secondaryKey\": \"patchedSk2234\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e5d3104-caa0-42e6-b874-ad1ba9073084" + "2ca3da11-316d-44d5-834c-12e8b5528ce2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAexs=\"" + "\"AAAAAAAAC38=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "834b0523-a039-406d-8171-82d721062fbf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bfddf3c0-621b-4b28-b107-122c711ca40a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "1e735c2b-8155-4d78-85ed-867a5efcff45" + "61e304b9-f880-4911-9ce8-2348714a93b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210305Z:1e735c2b-8155-4d78-85ed-867a5efcff45" + "WESTUS:20200207T010717Z:61e304b9-f880-4911-9ce8-2348714a93b4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:05 GMT" - ], "Content-Length": [ - "1069" + "1094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -664,64 +664,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName8075\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"dcedc383f7cb48188a4dbff7e6af789c\",\r\n \"secondaryKey\": \"patchedSk6915\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId7613\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": \"patchedName4972\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T01:07:13.923Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"36b521eece7845e692e09e806a285346\",\r\n \"secondaryKey\": \"patchedSk2234\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aebb7bf0-a7bc-428b-8d5b-d2a9e874e02c" + "b0ecd824-6242-4cba-b477-f497f9e2985d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAex8=\"" + "\"AAAAAAAAC4M=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23ed0877-5d62-4ea1-afea-f56e4e16357f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9d4b714b-a8dc-4de2-883e-c1cc49071a36" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-correlation-request-id": [ - "76525637-072c-4bf5-891b-c27df15fb080" + "61d596de-154c-47e1-b004-5f441493d0c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210305Z:76525637-072c-4bf5-891b-c27df15fb080" + "WESTUS:20200207T010717Z:61d596de-154c-47e1-b004-5f441493d0c0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:05 GMT" - ], "Content-Length": [ - "1088" + "1113" ], "Content-Type": [ "application/json; charset=utf-8" @@ -730,59 +730,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName8075\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"dcedc383f7cb48188a4dbff7e6af789c\",\r\n \"secondaryKey\": \"31ee9723bfb14b35a08b4f1e981a3c68\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId7613\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": \"patchedName4972\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T01:07:13.923Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"36b521eece7845e692e09e806a285346\",\r\n \"secondaryKey\": \"e86a1fc9e9df4920a5c046b9ff9d1459\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba9b1b81-5721-4b5c-9cb5-dd3cc205b064" + "b28c0291-4b51-4a32-9041-82f31f3b5434" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bae8f73-90c2-4a86-86ff-2d64ac7d490b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3ef39e67-4c85-4861-bea3-252254b37321" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "012d7fe1-2fc0-4384-841a-8ad95e60006d" + "350f7bbd-1d5f-4b3b-aa3f-501db007ad53" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210306Z:012d7fe1-2fc0-4384-841a-8ad95e60006d" + "WESTUS:20200207T010717Z:350f7bbd-1d5f-4b3b-aa3f-501db007ad53" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:06 GMT" - ], "Content-Length": [ "88" ], @@ -797,57 +797,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/subscriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5b9a78c-c103-4fa4-8c13-47e5ff68efe5" + "7d0ec206-52db-4cf5-9e85-c4bc5ee348bc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e96b839c-e57e-4f98-98f3-f29af5d45017" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "43e5928a-58c1-4357-970d-9dec14e49a54" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "feaf7838-9e28-43d1-a100-c49f443dffc4" + "8b0b5dc3-e3f3-4ec5-b02e-14e348dda3b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210304Z:feaf7838-9e28-43d1-a100-c49f443dffc4" + "WESTUS:20200207T010715Z:8b0b5dc3-e3f3-4ec5-b02e-14e348dda3b7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:04 GMT" - ], "Content-Length": [ - "2324" + "2388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -856,68 +856,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName4049\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK5050\",\r\n \"secondaryKey\": \"newSubscriptionSK6261\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5e3cad2f4acd5f008a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:19:59.283Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"f01011258be443508acefd69d070c579\",\r\n \"secondaryKey\": \"83fe51906f2f4d4281111837d735a372\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/subscriptions/newSubscriptionId7613\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"newSubscriptionId7613\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": \"newSubscriptionName9228\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T01:07:13.923Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK9086\",\r\n \"secondaryKey\": \"newSubscriptionSK3593\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"patchedName8075\",\r\n \"primaryKey\": \"patchedPk9058\",\r\n \"secondaryKey\": \"patchedSk6915\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"patchedName4972\",\r\n \"primaryKey\": \"patchedPk662\",\r\n \"secondaryKey\": \"patchedSk2234\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b898381b-d1f5-4002-8597-d6b6111c6bbe" + "ae23ac98-21ac-4148-8a6f-23221e4e58b7" ], "If-Match": [ - "\"AAAAAAAAexQ=\"" + "\"AAAAAAAAC3g=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "187" + "186" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c67d941-d2f6-4534-b12c-24b683a7934d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d591adb9-61cf-493d-b73a-a78999d5780f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "25595a59-c2c0-43da-8b89-f0a057669274" + "b4968df6-abc8-409f-b59a-1f710cb29c9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210305Z:25595a59-c2c0-43da-8b89-f0a057669274" + "WESTUS:20200207T010716Z:b4968df6-abc8-409f-b59a-1f710cb29c9f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:04 GMT" - ], "Expires": [ "-1" ] @@ -926,55 +926,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250/regeneratePrimaryKey?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MC9yZWdlbmVyYXRlUHJpbWFyeUtleT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613/regeneratePrimaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzL3JlZ2VuZXJhdGVQcmltYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4c21ee7-7f93-4aa6-9a04-25d62897bde8" + "bff04879-1e9b-4d76-9c31-3eeac4a77b18" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c1f9ed4-140a-49e4-b280-cd0e334eeb29" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7c5e5675-b0e3-4a58-9bed-ffd88cbc1192" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "98474b25-480e-4be1-b9c5-d7d27b96960f" + "bb9ddcc8-47f0-45ca-8076-6cb6466f08db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210305Z:98474b25-480e-4be1-b9c5-d7d27b96960f" + "WESTUS:20200207T010717Z:bb9ddcc8-47f0-45ca-8076-6cb6466f08db" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:05 GMT" - ], "Expires": [ "-1" ] @@ -983,55 +983,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250/regenerateSecondaryKey?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MC9yZWdlbmVyYXRlU2Vjb25kYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613/regenerateSecondaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzL3JlZ2VuZXJhdGVTZWNvbmRhcnlLZXk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4beca2dd-ee32-4c71-8787-94db6b009dbe" + "43e33f88-ecef-477b-a834-6978a43a8b3c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "336a3694-bb03-4d8e-bab6-24293cbc26d2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "df716ec8-8bae-437f-80e6-5e23286b811a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "8f99a6fb-df54-486f-aae8-7e6b9c199415" + "ad8341b4-6d92-4b87-b315-ff9ddfbf5bcb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210305Z:8f99a6fb-df54-486f-aae8-7e6b9c199415" + "WESTUS:20200207T010717Z:ad8341b4-6d92-4b87-b315-ff9ddfbf5bcb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:05 GMT" - ], "Expires": [ "-1" ] @@ -1040,121 +1040,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7a9d6e6-5dc2-4d63-b829-b078fb383f12" + "9c9bf62e-e2b9-4200-8f90-740b53e79ccc" ], "If-Match": [ - "\"AAAAAAAAex8=\"" + "\"AAAAAAAAC4M=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cfbbef5-4d23-4337-8131-3c578ec6d715" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "631dc8de-f459-447a-9fff-b466a408becf" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "f998788c-bd22-4606-bf33-4ad7d2f4c2fc" + "9af34e5b-a129-438c-9eb7-018ac32dfe02" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210306Z:f998788c-bd22-4606-bf33-4ad7d2f4c2fc" + "WESTUS:20200207T010717Z:9af34e5b-a129-438c-9eb7-018ac32dfe02" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:05 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/newSubscriptionId7613?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvbmV3U3Vic2NyaXB0aW9uSWQ3NjEzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31868472-db89-4fe4-9018-bb3e763cd4ab" + "9de53de7-5d86-4e66-8cc5-56d763d09af7" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc82c697-f145-458f-bbc3-c23076138822" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "04ebfda4-3620-4d5e-80cf-dd5195eebf16" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "770d63b3-9877-436a-a560-f5982202a96f" + "55ae234b-1ca7-4534-9e6e-81ca88890313" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210306Z:770d63b3-9877-436a-a560-f5982202a96f" + "WESTUS:20200207T010718Z:55ae234b-1ca7-4534-9e6e-81ca88890313" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:06 GMT" - ], "Expires": [ "-1" ] @@ -1163,66 +1163,66 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL2dsb2JhbFN1YnNjcmlwdGlvbklkOTM4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/globalSubscriptionId344?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvZ2xvYmFsU3Vic2NyaXB0aW9uSWQzNDQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"global866\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"global8881\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c572d10a-88f4-41d6-bce6-539b13f2d5d5" + "37ecf867-7920-4e95-aa28-f3488b154bcd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "83" + "84" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:17 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAeyU=\"" + "\"AAAAAAAAC4k=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5758beb9-3981-410f-8813-a30b43015480" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2d9148b9-9799-49bd-9de9-86f345b19fb8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "06a12c17-c26f-4195-851f-778772e17ad6" + "66a096f0-6d31-44b9-b19a-ffcc06a284e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210306Z:06a12c17-c26f-4195-851f-778772e17ad6" + "WESTUS:20200207T010718Z:66a096f0-6d31-44b9-b19a-ffcc06a284e6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:06 GMT" - ], "Content-Length": [ - "845" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1231,125 +1231,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"globalSubscriptionId9387\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis\",\r\n \"displayName\": \"global866\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:06.3885123Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"c554371031204f3ba32344727353a11c\",\r\n \"secondaryKey\": \"a3a5dd462c654f20834fb7d94a25fded\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/globalSubscriptionId344\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"globalSubscriptionId344\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis\",\r\n \"displayName\": \"global8881\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T01:07:18.0511819Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"02207fe58fdc425987537bcf02d58d50\",\r\n \"secondaryKey\": \"f575994dd7d5429a8cbd36674b18f9cd\",\r\n \"stateComment\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL2dsb2JhbFN1YnNjcmlwdGlvbklkOTM4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/globalSubscriptionId344?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvZ2xvYmFsU3Vic2NyaXB0aW9uSWQzNDQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83f3a2b6-9bca-49dc-868a-9535275f2963" + "be75635d-4f5e-43f3-a8f4-d3cef7ff5d7f" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bc8c0dc-89ec-4783-838d-c40d84bc9a7e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8472295b-3335-4693-b4a2-1fc7b01adb1b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "520556d7-dd8e-489e-8761-f1a76a6a6ffc" + "4cd2c9fc-ac9e-469f-8431-c2e0918530e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210306Z:520556d7-dd8e-489e-8761-f1a76a6a6ffc" + "WESTUS:20200207T010718Z:4cd2c9fc-ac9e-469f-8431-c2e0918530e8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:06 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL2dsb2JhbFN1YnNjcmlwdGlvbklkOTM4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/globalSubscriptionId344?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvZ2xvYmFsU3Vic2NyaXB0aW9uSWQzNDQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb512ab7-516c-4e6e-b83d-35f739840d01" + "e03fc5b9-8ede-497e-aa23-876904f0739c" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d18cf6c-0e76-4f7d-9037-84b28e0a098b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "88708cb2-a00c-4e9a-8264-80f854210f83" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "83b542fc-5288-4dc9-8194-bc8db7a87846" + "76e10dc0-901b-4edf-8909-28e3bb51f02a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210306Z:83b542fc-5288-4dc9-8194-bc8db7a87846" + "WESTUS:20200207T010718Z:76e10dc0-901b-4edf-8909-28e3bb51f02a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:06 GMT" - ], "Expires": [ "-1" ] @@ -1358,55 +1358,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL2dsb2JhbFN1YnNjcmlwdGlvbklkOTM4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/subscriptions/globalSubscriptionId344?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3N1YnNjcmlwdGlvbnMvZ2xvYmFsU3Vic2NyaXB0aW9uSWQzNDQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff34648d-11fb-400e-9a83-fce007cb6725" + "e5d2bd2c-ec08-4d5f-88a5-ebc3cace4f6b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:07:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9caef395-1947-4dd1-a08d-86ca9f8c5fd1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ef1c83f3-c9f9-4f45-99cf-6116a71754c9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-correlation-request-id": [ - "0cf1512e-c2a9-4aac-8f3d-e9e4f3116db3" + "95e18d70-ec3d-4103-a0f5-0b4c4a1e1dbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T210306Z:0cf1512e-c2a9-4aac-8f3d-e9e4f3116db3" + "WESTUS:20200207T010718Z:95e18d70-ec3d-4103-a0f5-0b4c4a1e1dbe" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 21:03:06 GMT" - ], "Content-Length": [ "88" ], @@ -1423,15 +1423,15 @@ ], "Names": { "CreateListUpdateDelete": [ - "newSubscriptionId2250", - "globalSubscriptionId9387", - "newSubscriptionName4049", - "newSubscriptionPK5050", - "newSubscriptionSK6261", - "patchedName8075", - "patchedPk9058", - "patchedSk6915", - "global866" + "newSubscriptionId7613", + "globalSubscriptionId344", + "newSubscriptionName9228", + "newSubscriptionPK9086", + "newSubscriptionSK3593", + "patchedName4972", + "patchedPk662", + "patchedSk2234", + "global8881" ] }, "Variables": { @@ -1439,7 +1439,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagDescriptionTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagDescriptionTests/CreateListUpdateDelete.json index fc6fc3db417a..c602d9dd0950 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagDescriptionTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagDescriptionTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "042ba3ff-6c56-40ec-ab9d-9818fa2c084a" + "9f064d8c-b685-4f05-83d7-d10b3ce21d38" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:35 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "783fb73b-06da-41e8-b8d1-4b9d81a5e8aa", - "56341509-1f43-444e-966f-3a0b098dcf02" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "aa256af7-0fe2-4d0f-90a7-181809c48275", + "df4e5890-604f-4d8e-b6a4-1fe8eba19b10" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "c64aebdd-fed2-4b90-acc2-85e950aa638f" + "49a6262e-417d-417c-8e99-0aacba34dd94" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020922Z:c64aebdd-fed2-4b90-acc2-85e950aa638f" + "WESTUS:20200207T005236Z:49a6262e-417d-417c-8e99-0aacba34dd94" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:22 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98f84ec5-b119-4a74-8ccb-fc6012ba65b2" + "c7bdb6c3-e373-469a-82b8-3a53b2079b65" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:36 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2443146-373f-47a4-8453-a06d8c0a5399" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "65ad8984-6fdb-4a8d-a03a-5a710e6d0c94" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "7c9d084c-953a-448d-82c7-09f200bc8a91" + "57073ef7-2901-4072-96c6-949de2a67a63" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020922Z:7c9d084c-953a-448d-82c7-09f200bc8a91" + "WESTUS:20200207T005236Z:57073ef7-2901-4072-96c6-949de2a67a63" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:22 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59b082ef-beaf-423a-b4fb-e8bbbcd1801d" + "0588d280-a250-40b0-8b59-e6b2cf3380a3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:36 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f0ea1ea-df86-4954-aa42-cea02e4690d1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4298d0b7-b25c-490a-8862-5bebda5ae025" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "8f10b98b-17b8-4ece-b35d-9660daec42b4" + "8e87a8e7-9ec5-4024-b2e5-449a4e80d624" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020922Z:8f10b98b-17b8-4ece-b35d-9660daec42b4" + "WESTUS:20200207T005236Z:8e87a8e7-9ec5-4024-b2e5-449a4e80d624" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:22 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,70 +199,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjM1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag3405\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "69fd99b9-9b7c-4760-b949-d44892010159" + "4afad145-c141-4c2a-8713-c98a1a5314bd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "60" + "61" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:36 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQY=\"" + "\"AAAAAAAACSw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e89c96e2-c896-47ac-9bfc-0f74380c8cc9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ef5bc956-df5a-41bf-81ab-dd39b687b742" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "25ab36f2-5b90-49c9-9abb-105f691edb39" + "501fb4a8-4b2c-4392-a458-5077a56b62ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020923Z:25ab36f2-5b90-49c9-9abb-105f691edb39" + "WESTUS:20200207T005236Z:501fb4a8-4b2c-4392-a458-5077a56b62ff" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:23 GMT" - ], "Content-Length": [ - "310" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,64 +271,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag7641\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag235\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag3405\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNzY0MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMzU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5f6e452-2377-40c8-b4d6-b5f20d66e3da" + "5fef8c74-9368-402f-9eaa-e01a6dcfacd4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:36 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQY=\"" + "\"AAAAAAAACSw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2094686-6bb2-47b0-be8d-9c3af9d0b735" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0a6d4c0c-9995-470c-9aa9-a1a21559f13d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "fdf5cd7a-0a10-44de-b1fb-af1231aa0827" + "0cd56848-cab5-4a6b-b783-1a20bfc662ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020923Z:fdf5cd7a-0a10-44de-b1fb-af1231aa0827" + "WESTUS:20200207T005236Z:0cd56848-cab5-4a6b-b783-1a20bfc662ea" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:23 GMT" - ], "Content-Length": [ - "329" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,61 +337,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag7641\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag7641\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag235\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag235\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag3405\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFnRGVzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dca77396-dcd8-4cef-84bf-d8765923146c" + "a4a8baad-100f-4f8e-ba3d-965684bd1d23" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09e4b0dd-9c8e-432f-b4da-93bfaf119edd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5bc3fb1c-a2c4-4033-8f6c-7852cc3f5a4e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "3aff5960-537a-414e-a907-f1ec7b8d3a64" + "f2f6dc14-5903-4eef-b2c4-aedbfc11491d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020923Z:3aff5960-537a-414e-a907-f1ec7b8d3a64" + "WESTUS:20200207T005237Z:f2f6dc14-5903-4eef-b2c4-aedbfc11491d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:23 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,70 +400,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFnRGVzY3JpcHRpb25zL2FwaVRhZzIzNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"somedescription8483\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"somedescription979\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae2e64c8-0bf1-4161-bce7-f5c5ce37ac88" + "b7729dc9-a77e-4d12-ab9c-2b11956202a5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "120" + "119" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:38 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQY=\"" + "\"AAAAAAAACSw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e7d31d3-1bd2-4816-919e-0eb03fb03fa3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4d3157fc-b7f5-4107-82ad-ea0aac26f6b4" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "4d8f7c8f-4f3f-4ac3-aea1-a16c8728b289" + "7f3e8128-3c68-4cce-b118-b8d3a138be3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020924Z:4d8f7c8f-4f3f-4ac3-aea1-a16c8728b289" + "WESTUS:20200207T005238Z:7f3e8128-3c68-4cce-b118-b8d3a138be3d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:24 GMT" - ], "Content-Length": [ - "457" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,29 +472,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag7641\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\",\r\n \"description\": \"somedescription8483\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions/apiTag235\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag235\",\r\n \"properties\": {\r\n \"tagId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235\",\r\n \"displayName\": \"apiTag3405\",\r\n \"description\": \"somedescription979\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFnRGVzY3JpcHRpb25zL2FwaVRhZzIzNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"tag_update2607\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"tag_update5062\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae34a8f8-a993-4235-9a96-bde8dacf7aad" + "754a55a9-94ea-44bd-9709-df9700dc29de" ], "If-Match": [ - "\"AAAAAAAAcQc=\"" + "\"AAAAAAAACS0=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,38 +507,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:39 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQY=\"" + "\"AAAAAAAACSw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1a75936-63d3-4046-aaf6-ac2e043fee59" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "70b8cae1-744e-4d3e-bdb3-7d9111bd1174" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "9503351d-775a-4737-9c9c-d459f478020f" + "e2e80cae-67d2-4edc-bea4-ca66b5d86c14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020924Z:9503351d-775a-4737-9c9c-d459f478020f" + "WESTUS:20200207T005239Z:e2e80cae-67d2-4edc-bea4-ca66b5d86c14" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:24 GMT" - ], "Content-Length": [ - "452" + "670" ], "Content-Type": [ "application/json; charset=utf-8" @@ -547,62 +547,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag7641\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\",\r\n \"description\": \"tag_update2607\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions/apiTag235\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag235\",\r\n \"properties\": {\r\n \"tagId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235\",\r\n \"displayName\": \"apiTag3405\",\r\n \"description\": \"tag_update5062\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFnRGVzY3JpcHRpb25zL2FwaVRhZzIzNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "936f4af7-ce28-4079-bf61-5fda56cf8938" + "fbf7c64a-3ca5-4703-8d27-b23c3eeea3ab" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:38 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQc=\"" + "\"AAAAAAAACS0=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "562edc78-d1e7-4f9d-bf5c-20f2bfc52669" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "eec6ee47-b709-4b59-845b-25824c4e457b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "013fd529-4e47-49ca-a02f-6f0256eb9a28" + "3f49567b-a2dd-4e2e-ab42-9d2ed3b854cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020924Z:013fd529-4e47-49ca-a02f-6f0256eb9a28" + "WESTUS:20200207T005238Z:3f49567b-a2dd-4e2e-ab42-9d2ed3b854cf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:24 GMT" - ], "Content-Length": [ "0" ], @@ -614,58 +614,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFnRGVzY3JpcHRpb25zL2FwaVRhZzIzNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ceb3a3f-e2ea-480d-9e5c-852b80a2ee3d" + "b5b8c8e6-e151-4fea-8b38-3ccbf3cffc2b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:39 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQg=\"" + "\"AAAAAAAACS4=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a2027ef-0502-4589-b0a4-df6a26e427b7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ba85be62-b47e-4435-9b96-2b54ac2651c3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "484a5f8c-7df4-488c-a7f9-ab26fab01041" + "2895cc35-586e-434d-8c46-77fe12f0eb2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020924Z:484a5f8c-7df4-488c-a7f9-ab26fab01041" + "WESTUS:20200207T005239Z:2895cc35-586e-434d-8c46-77fe12f0eb2e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:24 GMT" - ], "Content-Length": [ "0" ], @@ -677,121 +677,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFnRGVzY3JpcHRpb25zL2FwaVRhZzIzNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc8c9aa7-dbe0-4f49-9dff-d6cdbd7df096" + "c0e8e063-669a-4ee4-a5db-cfb5964cd999" ], "If-Match": [ - "\"AAAAAAAAcQg=\"" + "\"AAAAAAAACS4=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:39 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8fd4d460-014c-4d41-a2ae-27e7dc04b3ad" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "635e6ebe-d4f4-40e0-8b9a-7cb57031b850" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "2fddf7d1-471d-46f8-bb23-3fe346015160" + "b6d0c970-d3b2-48d2-89f6-8cc18e8495fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020925Z:2fddf7d1-471d-46f8-bb23-3fe346015160" + "WESTUS:20200207T005239Z:b6d0c970-d3b2-48d2-89f6-8cc18e8495fc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:25 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tagDescriptions/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFnRGVzY3JpcHRpb25zL2FwaVRhZzIzNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12a8222d-ede9-4283-9e62-1ca803da6fcc" + "91499685-747d-41e5-85d8-b6ea05a81cef" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1db6123a-9646-4720-87c7-034c52476970" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9b853c24-0fd6-440f-b03e-cac67bcd379c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], "x-ms-correlation-request-id": [ - "425417d1-09f2-4a10-aa85-7602bf10b0e9" + "ef0f882f-e606-41d4-9419-b6d0a3c37cbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020926Z:425417d1-09f2-4a10-aa85-7602bf10b0e9" + "WESTUS:20200207T005240Z:ef0f882f-e606-41d4-9419-b6d0a3c37cbb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:26 GMT" - ], "Expires": [ "-1" ] @@ -800,58 +800,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjM1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59b35938-c191-4084-ba09-8ecdc8caae7a" + "b38b17e9-8c6a-4f50-85b3-b8da030cdf57" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:39 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQY=\"" + "\"AAAAAAAACSw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5385e670-0653-4f4a-80c6-5ccae5fcb11e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7f740602-b455-4e5f-9a92-6f15b017eb5d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "0f213a66-b964-47c5-9a25-87d5bac1ecfd" + "afe3c45b-c19d-438c-8310-4de382643c5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020925Z:0f213a66-b964-47c5-9a25-87d5bac1ecfd" + "WESTUS:20200207T005239Z:afe3c45b-c19d-438c-8310-4de382643c5d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:25 GMT" - ], "Content-Length": [ "0" ], @@ -863,58 +863,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjM1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecfcb5e1-6556-4e0a-851d-f7c070544549" + "e6353111-2c5c-4b24-be16-a31dc89971cd" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:40 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcQY=\"" + "\"AAAAAAAACSw=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ff7ff29-9ece-4dfa-8a50-c10bf237c277" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a03c44a4-49fc-4268-817a-e6a3a2bf1c55" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "9f069646-83b2-4724-a7c1-e3d61f205673" + "04d72735-5499-4f9e-8eb1-8dc2b270a92b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020925Z:9f069646-83b2-4724-a7c1-e3d61f205673" + "WESTUS:20200207T005240Z:04d72735-5499-4f9e-8eb1-8dc2b270a92b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:25 GMT" - ], "Content-Length": [ "0" ], @@ -926,115 +926,115 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNzY0MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMzU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0842a71-fd73-4f30-9148-43e8db1ced6b" + "21ab8613-a60e-408e-bca9-81b9262bcfe8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9521bf92-7ede-4b0e-aff4-ba9710b2116b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fa784c0e-6563-4e51-997f-52230b435e1c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "26265185-a166-4f91-bde1-f87cc786ced7" + "59e52e86-0fcb-4000-9df8-6ced85876bb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020925Z:26265185-a166-4f91-bde1-f87cc786ced7" + "WESTUS:20200207T005240Z:59e52e86-0fcb-4000-9df8-6ced85876bb5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:25 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNzY0MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMzU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c43553a-f5f4-4b34-883b-a863fb0bb656" + "71aed05f-2810-4a77-8ac9-1ba95446257d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e6833c2-d992-4bff-b9bd-036feeef9539" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "27400b28-434a-405c-aa66-8a039a322544" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "0154512f-3061-410f-97a9-0daf3423d1b7" + "c1cc75f1-121d-47b8-980e-68e16697200f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020926Z:0154512f-3061-410f-97a9-0daf3423d1b7" + "WESTUS:20200207T005240Z:c1cc75f1-121d-47b8-980e-68e16697200f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:26 GMT" - ], "Expires": [ "-1" ] @@ -1043,121 +1043,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjM1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e860c90f-c505-4322-8014-f6b4ecbce555" + "549d1697-9d55-4db4-a76c-f93f31426fde" ], "If-Match": [ - "\"AAAAAAAAcQY=\"" + "\"AAAAAAAACSw=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b815cb85-a145-4f5f-95b9-5e73609b584e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "481dc8dc-7c8e-4acc-8080-225d948ddfb7" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "4b8fb8f4-10bb-42e8-85f8-4e7fe3e2f7d6" + "b22ee575-6a20-4660-ab2a-081252912f7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020926Z:4b8fb8f4-10bb-42e8-85f8-4e7fe3e2f7d6" + "WESTUS:20200207T005240Z:b22ee575-6a20-4660-ab2a-081252912f7a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:25 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjM1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4edf073c-271f-4ba5-987e-52b4740d1715" + "48433c98-79c5-4b98-bf49-a630214f9e9b" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99146e59-032a-4684-a66d-2e566c7aed72" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f672915d-9656-4d86-84ff-ace51cfcb308" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], "x-ms-correlation-request-id": [ - "32a46441-10cc-43f4-97ab-1268d6c2ce1a" + "0a38e47d-905d-46e4-b7c3-32ac390fec7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020926Z:32a46441-10cc-43f4-97ab-1268d6c2ce1a" + "WESTUS:20200207T005240Z:0a38e47d-905d-46e4-b7c3-32ac390fec7b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:26 GMT" - ], "Expires": [ "-1" ] @@ -1166,55 +1166,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag235?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjM1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a402a976-8c46-4c2b-bd9b-d09f4e08a141" + "3b96db44-3d85-4b28-8291-c33e844cc4b6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:52:40 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "538871b8-0238-4778-b7ff-0810f9908df7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d7c9ec8e-820b-43ca-b890-5682c19ef773" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "3131c249-2ad3-4803-a2ef-b240c86451b0" + "3837d332-ddbc-431b-ab9e-ac6b8ba90405" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020926Z:3131c249-2ad3-4803-a2ef-b240c86451b0" + "WESTUS:20200207T005240Z:3837d332-ddbc-431b-ab9e-ac6b8ba90405" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:09:26 GMT" - ], "Content-Length": [ "79" ], @@ -1231,10 +1231,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "apiTag7641", - "apiTag915", - "somedescription8483", - "tag_update2607" + "apiTag235", + "apiTag3405", + "somedescription979", + "tag_update5062" ] }, "Variables": { @@ -1242,7 +1242,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteApiTags.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteApiTags.json index 284fec76d573..3b77faa4278b 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteApiTags.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteApiTags.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d3315680-36d0-4381-8b17-d1b58648c5cf" + "e01f2db1-5677-4183-aacf-233da7c7b0ed" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:06 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cb0a648-3a0a-4c0f-8710-c8a9b57711e4", - "14964a33-9cf0-449d-bb8c-805b66dc1b74" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d6652da8-feb9-4fce-9f75-5d9af28483a9", + "6176c45d-de9b-4f08-b998-d415c3cd32eb" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "1e2d1194-a9b8-46b6-a412-718f008973a5" + "37cd96fe-9e3d-4a3a-8c3a-6ea2e6ce17e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185804Z:1e2d1194-a9b8-46b6-a412-718f008973a5" + "WESTUS:20200207T015706Z:37cd96fe-9e3d-4a3a-8c3a-6ea2e6ce17e8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:03 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4561a278-c0a2-4e61-9899-38e6b490910c" + "76b27bf9-40b7-46ce-9cb0-6e78cb2923f6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:06 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2abd0596-c5d7-4a32-95f7-a12e26023a23" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f5f71dd9-5be2-433e-bda6-7d4c6b951593" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "253ebd84-d9e9-4915-b7b7-2b3acde38bdb" + "3931b8f2-8396-4a9a-96a4-1f4b12bc27d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185804Z:253ebd84-d9e9-4915-b7b7-2b3acde38bdb" + "WESTUS:20200207T015706Z:3931b8f2-8396-4a9a-96a4-1f4b12bc27d4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:04 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "917ad55f-cbab-4328-b5d7-ed81d6768f4c" + "58807136-2824-47ab-a31e-a7595b955550" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2ae1ecb-98ad-43c9-a455-101ec292eccc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ec63839a-85ba-4678-8727-263bb7383e0f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "653a81a5-bba5-4534-8b32-eb0ae17eea0e" + "1093708e-5315-41b2-b1f4-c27dbd216ba5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185805Z:653a81a5-bba5-4534-8b32-eb0ae17eea0e" + "WESTUS:20200207T015706Z:1093708e-5315-41b2-b1f4-c27dbd216ba5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:04 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21e175df-3fec-400a-b259-8e159a0ad5fc" + "6620d379-204e-45e1-a1eb-d4b4d8e36414" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91d8c82b-fea0-4c18-86da-28e04b1d5c06" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "34d3732c-a1c8-456f-88f8-15831895cf14" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "4f5899a5-565b-4a7d-8fec-492bc15a2253" + "871d4ad5-3a0c-4978-b4c8-5311f4514d59" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185805Z:4f5899a5-565b-4a7d-8fec-492bc15a2253" + "WESTUS:20200207T015707Z:871d4ad5-3a0c-4978-b4c8-5311f4514d59" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:04 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,70 +262,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag907\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "87e98b7c-8395-46ce-84fb-e2be884ad993" + "e7b94173-d135-4720-831f-813abd456363" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "61" + "60" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerE=\"" + "\"AAAAAAAAC/U=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7bdb048-4bfe-43d7-8fe1-cf227b5b0974" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f8182a04-1ba3-4ab3-a53e-1876c2b9b420" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "f3c898ad-4138-4de7-aee2-c5e104682fdd" + "51a5b7c4-cba7-438f-85cf-a6e870e3ec6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185805Z:f3c898ad-4138-4de7-aee2-c5e104682fdd" + "WESTUS:20200207T015707Z:51a5b7c4-cba7-438f-85cf-a6e870e3ec6c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:05 GMT" - ], "Content-Length": [ - "311" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,64 +334,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag4325\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag220\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag220\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag907\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMjA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30e8b098-6ad6-4aba-b83f-4a4ad9459882" + "f10c2c5c-30e8-4928-8def-d40c36f67e3b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:07 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerE=\"" + "\"AAAAAAAAC/U=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d85b75d-6e14-4ff5-b1d2-3c35b6908ab9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "553de264-e634-44e6-bfcb-2dac7be0ff21" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "51864437-86aa-4a71-b031-31cab4589751" + "b29df310-8d97-413a-8ac7-09af0d2c7cf3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185806Z:51864437-86aa-4a71-b031-31cab4589751" + "WESTUS:20200207T015707Z:b29df310-8d97-413a-8ac7-09af0d2c7cf3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:05 GMT" - ], "Content-Length": [ - "330" + "335" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,61 +400,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag4325\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag220\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag907\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apisByTags?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzQnlUYWdzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apisByTags?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXNCeVRhZ3M/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd64a3f5-1f35-4729-90fd-b8f5403d6c95" + "5be6a052-2751-4d74-b628-38c7feaa24b6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63f8fdd3-b6b4-437c-a219-da3317d57291" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "df5038d1-77f1-4cf6-8493-9ff7a8a2cd3c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "21eb0d56-7a70-4d07-97df-55e43ed53a39" + "db21ecc8-f6e2-4a11-b335-57e7ce8c8c00" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185807Z:21eb0d56-7a70-4d07-97df-55e43ed53a39" + "WESTUS:20200207T015708Z:db21ecc8-f6e2-4a11-b335-57e7ce8c8c00" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:06 GMT" - ], "Content-Length": [ - "338" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,61 +463,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag4325\",\r\n \"name\": \"apiTag6334\"\r\n },\r\n \"api\": {\r\n \"id\": \"/apis/echo-api\",\r\n \"name\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag220\",\r\n \"name\": \"apiTag907\"\r\n },\r\n \"api\": {\r\n \"id\": \"/apis/echo-api\",\r\n \"name\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc6b9324-27ce-4b27-b731-e9009f994e35" + "b9de7fc1-9c10-434c-8c8e-9d60a86c4a58" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:08 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f8ee30c-0405-4dbf-bda1-6080b9cb8189" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a1a92cc2-31a4-4d6a-956d-308b882b2fb2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "d45b606f-c2a8-477d-9848-288525a6c18c" + "8a05ffd4-8afc-4863-b766-4a99ad5b0ab7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185808Z:d45b606f-c2a8-477d-9848-288525a6c18c" + "WESTUS:20200207T015709Z:8a05ffd4-8afc-4863-b766-4a99ad5b0ab7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:07 GMT" - ], "Content-Length": [ - "387" + "407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,64 +526,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag4325\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag220\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag907\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMjA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75108fd4-025d-4028-9b51-af0a4d3c6981" + "013e89c4-1a6c-41dc-83d2-acdcb6d337a3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerE=\"" + "\"AAAAAAAAC/U=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35b682fd-b7a6-4f80-9094-d18587aed56d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4ea38c89-ea7f-4f74-b57c-afeea152cdab" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "6b95b3ce-95ca-49da-983c-9529cce63655" + "bb6cb3c2-0741-48e9-b78d-7979de2b5b9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185808Z:6b95b3ce-95ca-49da-983c-9529cce63655" + "WESTUS:20200207T015709Z:bb6cb3c2-0741-48e9-b78d-7979de2b5b9d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:07 GMT" - ], "Content-Length": [ - "330" + "335" ], "Content-Type": [ "application/json; charset=utf-8" @@ -592,59 +592,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag4325\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag220\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag907\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMjA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33c5b25a-7aae-4103-b72c-cd4e4584097c" + "8a6b845d-6184-4bdb-a191-6549619bad08" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3af2a69-d133-4f2c-b98d-72d6eab4c688" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bbed351f-a683-4c55-b07e-69ee34ec3162" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "956c05f3-374c-4060-add2-8c189345e994" + "75479938-a895-41a4-9d77-a7c14871c89c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185811Z:956c05f3-374c-4060-add2-8c189345e994" + "WESTUS:20200207T015710Z:75479938-a895-41a4-9d77-a7c14871c89c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:11 GMT" - ], "Content-Length": [ "79" ], @@ -659,58 +659,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMjA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6caf4862-7579-409f-8971-4c03fb1b5df7" + "d3eb083c-0499-49ee-90b3-be29e0fe24f0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:09 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerE=\"" + "\"AAAAAAAAC/U=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90475dd6-f74c-4855-a3f1-d51988958ca2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2ec7c27f-357f-4b5d-a52c-468dd540c326" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "cdf8d0c1-c925-4789-9535-03462e7aa826" + "b3be1bfd-f42c-4182-9677-b06476ab8506" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185808Z:cdf8d0c1-c925-4789-9535-03462e7aa826" + "WESTUS:20200207T015709Z:b3be1bfd-f42c-4182-9677-b06476ab8506" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:08 GMT" - ], "Content-Length": [ "0" ], @@ -722,57 +722,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tagResources?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ1Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e131c2b-1259-48c9-ae3d-ea212e06f196" + "3d63a46c-04f1-441b-8e23-95d6af35d9c8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "339471ea-24d1-40ba-a224-b12f02377ad2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "822f934f-8e39-4a30-8f55-7b397d1783f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "ed1a3c98-2bd4-4201-8287-7a872f0e79b2" + "bd6b6583-1361-4207-a137-60b75b7bb7fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185811Z:ed1a3c98-2bd4-4201-8287-7a872f0e79b2" + "WESTUS:20200207T015710Z:bd6b6583-1361-4207-a137-60b75b7bb7fa" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:10 GMT" - ], "Content-Length": [ - "338" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -781,119 +781,119 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag4325\",\r\n \"name\": \"apiTag6334\"\r\n },\r\n \"api\": {\r\n \"id\": \"/apis/echo-api\",\r\n \"name\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag220\",\r\n \"name\": \"apiTag907\"\r\n },\r\n \"api\": {\r\n \"id\": \"/apis/echo-api\",\r\n \"name\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMjA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9e352f0-c4b1-495f-b7de-34ad24ae689b" + "373b199b-30ec-44e9-b80f-7f85c55c60f7" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7115015c-f98c-4795-804f-c088a18953e8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6ca675a3-c1b0-49d8-af30-d643fe19e361" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "5a8b38a2-852b-4f88-bfa5-e24a53013c69" + "3104be54-6cd9-4c9d-8398-92aaab106c0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185811Z:5a8b38a2-852b-4f88-bfa5-e24a53013c69" + "WESTUS:20200207T015710Z:3104be54-6cd9-4c9d-8398-92aaab106c0f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvdGFncy9hcGlUYWcyMjA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b90f2707-bebd-4bc1-abe6-c6f9f1784d5a" + "55fbfc3a-6366-47b4-b4ef-89c4a1fb9054" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39ba683c-f042-48c6-9afb-49e2fb955e04" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ef573a6c-ffa6-4cf4-ac46-12fd7b4ce492" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "5299b556-b293-4898-8d81-90c2f096f99a" + "517c55a5-7071-4fce-a375-0be0afdd2a8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185812Z:5299b556-b293-4898-8d81-90c2f096f99a" + "WESTUS:20200207T015711Z:517c55a5-7071-4fce-a375-0be0afdd2a8f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:12 GMT" - ], "Expires": [ "-1" ] @@ -902,58 +902,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f413c88c-ee88-408f-bfb4-5e043a5d5e6b" + "8dac9878-3801-48cb-ab57-fda03d620474" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:11 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerE=\"" + "\"AAAAAAAAC/U=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43ef4ae5-0177-44d1-a2ac-87c4a36a5c30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "15bfab54-dff0-4a64-99eb-9bc88b0cebfb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "25a23432-a5ae-46ff-9ccc-2138ccbb473d" + "62924d1b-1473-41e4-a73b-a1c3210ce910" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185812Z:25a23432-a5ae-46ff-9ccc-2138ccbb473d" + "WESTUS:20200207T015711Z:62924d1b-1473-41e4-a73b-a1c3210ce910" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:11 GMT" - ], "Content-Length": [ "0" ], @@ -965,55 +965,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "caaeeaf5-8a74-428d-a9ec-d24210130b7f" + "90b6a46b-4666-46cb-ab62-ab63070280f4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86bf55af-6367-4922-9695-6cab8f5fb5d2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4636f1e4-053e-4145-a192-a0ee099ac9e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "e5838b0e-ee15-4eab-88a9-7bd014008137" + "ead3cb7d-7204-419a-b9ab-d1f078e9df0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185812Z:e5838b0e-ee15-4eab-88a9-7bd014008137" + "WESTUS:20200207T015711Z:ead3cb7d-7204-419a-b9ab-d1f078e9df0e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:11 GMT" - ], "Content-Length": [ "0" ], @@ -1025,121 +1025,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "412aa8ba-a471-4019-9882-b3323a4d40d1" + "155ff36d-24f5-4470-82b0-f4704652155a" ], "If-Match": [ - "\"AAAAAAAAerE=\"" + "\"AAAAAAAAC/U=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48ac07e1-3a25-4fb5-a9b0-e67d43901a37" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5b4e8909-c0b9-46c8-b6f4-592917ff4857" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "3365a7ba-d2b5-4c8c-b064-0322a6e75198" + "342ca18f-8654-4cb2-902f-e2eb134395ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185812Z:3365a7ba-d2b5-4c8c-b064-0322a6e75198" + "WESTUS:20200207T015711Z:342ca18f-8654-4cb2-902f-e2eb134395ae" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:11 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/apiTag220?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvYXBpVGFnMjIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4c55ee2-8071-4b6a-bcc5-522a1a8f387b" + "fd1905ba-8981-4434-9608-a896418aba6e" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26d31fba-8e32-4f61-bad3-e584af3e506a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "da669c9d-d1f8-4b53-a35d-99ac14319838" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "82287f46-4e65-4311-ae1a-53ecc37ae718" + "6c9a97ad-1d60-4ca2-84c6-e90d0dac107d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185812Z:82287f46-4e65-4311-ae1a-53ecc37ae718" + "WESTUS:20200207T015711Z:6c9a97ad-1d60-4ca2-84c6-e90d0dac107d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:12 GMT" - ], "Expires": [ "-1" ] @@ -1150,8 +1150,8 @@ ], "Names": { "CreateListUpdateDeleteApiTags": [ - "apiTag4325", - "apiTag6334" + "apiTag220", + "apiTag907" ] }, "Variables": { @@ -1159,7 +1159,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteOperationTags.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteOperationTags.json index 4e7dddfb0323..bb2b817d0b3f 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteOperationTags.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteOperationTags.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "891525dd-44b2-4ee1-aa6d-97830720df9f" + "b6e661b5-3cf1-4e52-a75e-0bb45b9e9d5d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:56:59 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ee4e29f-5e6a-42a7-89f1-4d2e7d410d05", - "25c593a8-3bf0-4e8c-ba01-0564ec451dda" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ce854cf3-9fe8-4c1b-a49d-3eb6a08b6163", + "c9ce0254-5396-46f8-b825-9b659f39beda" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "c74f84ac-8cf5-4d86-96f1-14dc1063cf5a" + "26d9da53-b1f3-4f89-9673-df20e05678c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185833Z:c74f84ac-8cf5-4d86-96f1-14dc1063cf5a" + "WESTUS:20200207T015659Z:26d9da53-b1f3-4f89-9673-df20e05678c4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:33 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d506692-7292-40e7-9528-93bb551a4f5f" + "e36d7ccf-060f-4bc8-95d4-f84e20babcde" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:56:59 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d10c3e9c-c8b0-415a-adac-e46545bb2fe4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "aa1729da-ed25-40c6-ab78-0b556ed77777" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "d9a16f3b-f2a3-4eb0-bceb-6469cd604bbd" + "6c0ac2a1-b07f-4969-b101-d578586e8829" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185833Z:d9a16f3b-f2a3-4eb0-bceb-6469cd604bbd" + "WESTUS:20200207T015659Z:6c0ac2a1-b07f-4969-b101-d578586e8829" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:33 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdc5f8dc-2979-4f7a-8e09-a4efdae0fff9" + "99e38691-a9b5-4be2-ad85-6277d85f707c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:56:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11325504-e100-4b5a-abee-62a0b006f405" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "988f7221-87dc-490e-bcda-8f9aec15b934" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "53fe8de8-0adc-4544-bfd8-b7eddbb86e06" + "7152fd6d-ad4f-4135-be0e-aeb819909d5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185834Z:53fe8de8-0adc-4544-bfd8-b7eddbb86e06" + "WESTUS:20200207T015659Z:7152fd6d-ad4f-4135-be0e-aeb819909d5c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:34 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3853f4d-6b03-4eb3-b0df-efe54bf73812" + "b334207c-9bcf-43b6-a0d4-94a3f539e81e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:56:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb6c10a8-3c21-49c5-bd61-5da1c10752d9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "555943ef-7316-4bd2-a3a0-9fcdd839ea3f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "17c1c94d-1dd4-48fc-ae4b-afef227d407a" + "b6b802da-f5f2-4034-a58a-53959b4becc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185834Z:17c1c94d-1dd4-48fc-ae4b-afef227d407a" + "WESTUS:20200207T015659Z:b6b802da-f5f2-4034-a58a-53959b4becc1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:34 GMT" - ], "Content-Length": [ - "676" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6a901c6-9227-4e77-8472-45220b66c3f3" + "398eb59b-0d08-4dfb-b992-7269e2424dd4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:56:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36fad7a2-3c75-45d3-8f6f-8710d7156d25" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6349c361-914b-49a6-a08c-ec80b81ea021" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "421a05f0-f23e-40cc-ac44-25733e9aa8dc" + "5ae24651-2bc6-4564-b5d1-d7acc9f1bef3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185834Z:421a05f0-f23e-40cc-ac44-25733e9aa8dc" + "WESTUS:20200207T015659Z:5ae24651-2bc6-4564-b5d1-d7acc9f1bef3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:34 GMT" - ], "Content-Length": [ - "1682" + "1709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,26 +325,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n\\t\\t}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3Mvb3BlcmF0aW9uVGFnMjY2MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"opreationTag3690\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ef12900c-6da1-4d38-9655-0ddae7c11ee7" + "1187c4bd-a8cf-4d47-b6f2-1277ec4eb6c0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,38 +357,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerI=\"" + "\"AAAAAAAAC/Q=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3753f2fd-e155-45d0-93b7-93108438a01c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0fe0534c-bd43-457a-ba9d-bcb3f0334be3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "57e1bf7a-d90f-4253-9fd6-17e582bf2db3" + "a5660a13-78a6-490b-a870-5e7728800d66" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185835Z:57e1bf7a-d90f-4253-9fd6-17e582bf2db3" + "WESTUS:20200207T015700Z:a5660a13-78a6-490b-a870-5e7728800d66" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:35 GMT" - ], "Content-Length": [ - "329" + "337" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,64 +397,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"operationTag8488\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/operationTag2661\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"operationTag2661\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag3690\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvdGFncy9vcGVyYXRpb25UYWcyNjYxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34109ad6-e696-4b22-b58d-9f40843875cd" + "1e1cb72f-8506-49bf-a122-56a687473f56" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:00 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerI=\"" + "\"AAAAAAAAC/Q=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "688a2984-e2a1-47c2-a0c4-553c0cf3ea3c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8ff772fe-3f74-433e-9baf-1ea67e60761b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "46846052-ad20-4099-87f8-6ec636b93542" + "2c68f3da-006a-4df5-9f10-eb89b55fbc59" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185835Z:46846052-ad20-4099-87f8-6ec636b93542" + "WESTUS:20200207T015700Z:2c68f3da-006a-4df5-9f10-eb89b55fbc59" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:35 GMT" - ], "Content-Length": [ - "386" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,61 +463,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag8488\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag2661\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag3690\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvdGFncz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9e16478-1c73-4664-a206-179deb21aaf4" + "88d5a64e-b443-4082-bc9f-17deab73752a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:01 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04395a08-6c29-42b4-8a4f-b1f09271c203" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "dce4eb24-ab12-4ccb-a144-12793169d08e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "0108394e-5199-4763-ae12-418629f7e693" + "a6d7094d-47ed-49c9-a4ee-a012c75561fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185836Z:0108394e-5199-4763-ae12-418629f7e693" + "WESTUS:20200207T015701Z:a6d7094d-47ed-49c9-a4ee-a012c75561fc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:36 GMT" - ], "Content-Length": [ - "443" + "466" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,64 +526,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag8488\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag2661\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag3690\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvdGFncy9vcGVyYXRpb25UYWcyNjYxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6265b5b5-65ea-42de-bc50-d011d1fad68c" + "bff286ba-1d12-4ef7-8bbe-c7e145510102" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:01 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerI=\"" + "\"AAAAAAAAC/Q=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8bc813a-f6d9-4040-b145-27dada199eef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c3ed55f1-fd36-427a-8cf1-3cd0dbdbb97b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "a6e62455-f808-4341-9d64-e88eb8116103" + "80ab4763-3731-41c7-9dee-15023133650f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185836Z:a6e62455-f808-4341-9d64-e88eb8116103" + "WESTUS:20200207T015701Z:80ab4763-3731-41c7-9dee-15023133650f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:36 GMT" - ], "Content-Length": [ - "386" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -592,59 +592,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag8488\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag2661\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag3690\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvdGFncy9vcGVyYXRpb25UYWcyNjYxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7406c453-61b6-40b8-a557-d0e3de87dd74" + "f514043c-9c5f-43ca-a0ee-e3d576e5b481" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d64a684-b962-4796-abee-b59c622f5ba9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c564e485-006a-4dfc-a121-ba5cb4dcda52" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "7571ee8b-51f6-4468-8210-4a83d46baa5d" + "209cc83f-a6e9-4970-910e-8205587862f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185838Z:7571ee8b-51f6-4468-8210-4a83d46baa5d" + "WESTUS:20200207T015704Z:209cc83f-a6e9-4970-910e-8205587862f1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:38 GMT" - ], "Content-Length": [ "79" ], @@ -659,55 +659,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tagResources?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ1Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abdf3e3c-727b-401c-8017-40bde5d98797" + "6c5dee24-c90c-43a8-8178-2b8e62b7484a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30ec7d33-9b08-4f73-a11f-5dfef8c14d27" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "17befb5f-e854-49f6-afe3-339265c026ec" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "b445df0d-9530-4e99-b541-fee4ba1941ef" + "1634817f-6fda-49a3-aa22-4bc1b011e6dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185837Z:b445df0d-9530-4e99-b541-fee4ba1941ef" + "WESTUS:20200207T015703Z:1634817f-6fda-49a3-aa22-4bc1b011e6dd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:37 GMT" - ], "Content-Length": [ "636" ], @@ -718,62 +718,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/operationTag8488\",\r\n \"name\": \"opreationTag6935\"\r\n },\r\n \"operation\": {\r\n \"id\": \"/apis/echo-api/operations/create-resource\",\r\n \"apiName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": null,\r\n \"name\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\"\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/operationTag2661\",\r\n \"name\": \"opreationTag3690\"\r\n },\r\n \"operation\": {\r\n \"id\": \"/apis/echo-api/operations/create-resource\",\r\n \"apiName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": null,\r\n \"name\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\"\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvdGFncy9vcGVyYXRpb25UYWcyNjYxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0fe976b-6aba-4a76-8bad-0733f299b168" + "3f9b58e2-90b4-484e-bff5-e5f101a26fb5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerI=\"" + "\"AAAAAAAAC/Q=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "936d32eb-50a0-4986-bd36-30bc0ba89240" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "59ee2d10-33e3-4058-b962-ba56e96a3c3f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "807851b4-f2b3-47c3-bed3-627787bb4abd" + "632d9aff-51a5-4eab-838b-5299343eb79f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185838Z:807851b4-f2b3-47c3-bed3-627787bb4abd" + "WESTUS:20200207T015704Z:632d9aff-51a5-4eab-838b-5299343eb79f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:38 GMT" - ], "Content-Length": [ "0" ], @@ -785,115 +785,115 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvdGFncy9vcGVyYXRpb25UYWcyNjYxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac5544b8-f26f-4fda-ada9-ef53c4ca3a93" + "441c02ab-916f-4f3d-86d1-0f0809027bf3" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f7bd0c6-8d27-4f20-94ef-5e2227102b79" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e1cf038d-ae7b-493b-983c-8dd03744516d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "efe7f600-e1b7-4059-9324-d09348cdd8a3" + "7bef23a3-f5b0-42eb-929f-2009032bd6cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185838Z:efe7f600-e1b7-4059-9324-d09348cdd8a3" + "WESTUS:20200207T015704Z:7bef23a3-f5b0-42eb-929f-2009032bd6cb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:38 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/apis/echo-api/operations/create-resource/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvdGFncy9vcGVyYXRpb25UYWcyNjYxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5751179e-2eb6-43ea-93fc-c3323e9b141d" + "86d4c9c0-cbbe-43d8-960b-a2f6bbf18714" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ea4032f-5a91-4b66-84f3-afe611c169c5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "10951e1f-ec34-4142-b17d-8a45fa4a63cb" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "fa4d772b-81ac-404c-bf5e-8de9ef657255" + "1577cbe5-f004-4af9-8551-a2f5da7d66db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185839Z:fa4d772b-81ac-404c-bf5e-8de9ef657255" + "WESTUS:20200207T015705Z:1577cbe5-f004-4af9-8551-a2f5da7d66db" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:39 GMT" - ], "Expires": [ "-1" ] @@ -902,58 +902,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3Mvb3BlcmF0aW9uVGFnMjY2MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55aff670-9ac2-439e-9d58-a56f00697e36" + "27cb5c4c-0e46-4779-890a-ecd2194d3049" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:04 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerI=\"" + "\"AAAAAAAAC/Q=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb6df697-ae03-44f5-afaa-821f96182e00" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9c7135b2-d5da-45c7-9e47-cffdf480792b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "3fe35f3f-6cda-45c8-b15c-022d9a907484" + "49690279-765f-4ce5-8a8b-acb2b541e675" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185839Z:3fe35f3f-6cda-45c8-b15c-022d9a907484" + "WESTUS:20200207T015704Z:49690279-765f-4ce5-8a8b-acb2b541e675" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:39 GMT" - ], "Content-Length": [ "0" ], @@ -965,55 +965,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3Mvb3BlcmF0aW9uVGFnMjY2MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a20dc0e1-e1ce-442c-8a38-e74438a215de" + "276b5b76-2315-42fa-b096-18558ffd3b0f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b697881d-fcd4-4779-bde6-a6e963b1188d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6cc0f5ec-1549-4f65-894a-8d5656086b44" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "fa0a911a-1e12-4b3b-ba2c-3c6b08cb4063" + "43dc37d6-639d-430a-9ee0-eaceb4e13371" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185839Z:fa0a911a-1e12-4b3b-ba2c-3c6b08cb4063" + "WESTUS:20200207T015704Z:43dc37d6-639d-430a-9ee0-eaceb4e13371" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:39 GMT" - ], "Content-Length": [ "0" ], @@ -1025,121 +1025,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3Mvb3BlcmF0aW9uVGFnMjY2MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30087dd8-5f13-481a-bc66-6b84431edf33" + "c9a5e3cf-4c3c-4aab-9015-0a2be3f9cabb" ], "If-Match": [ - "\"AAAAAAAAerI=\"" + "\"AAAAAAAAC/Q=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:04 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45504c61-7685-4068-9f1f-0be99d93c74d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "92560a16-f03e-4802-99b9-faf53e03df3b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "2e3727d7-8d44-4148-bb7a-8836685d37cb" + "bcd7f112-33c3-421d-97e4-cbadda3136ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185839Z:2e3727d7-8d44-4148-bb7a-8836685d37cb" + "WESTUS:20200207T015704Z:bcd7f112-33c3-421d-97e4-cbadda3136ad" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:39 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/operationTag2661?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3Mvb3BlcmF0aW9uVGFnMjY2MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "313a9a05-5815-4ec4-a766-7927cabcb88a" + "2a4bc155-8e7b-4989-8d07-17f326106728" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d0bfed8-49b7-40db-a681-03ec62437093" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a63846dd-599e-4f91-ad5b-a0f84ae2486d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "b6a8767b-0782-4473-81b0-aedcc4d0fa7a" + "716e985b-60e9-462b-90cf-15b1189a367f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185839Z:b6a8767b-0782-4473-81b0-aedcc4d0fa7a" + "WESTUS:20200207T015705Z:716e985b-60e9-462b-90cf-15b1189a367f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:39 GMT" - ], "Expires": [ "-1" ] @@ -1150,8 +1150,8 @@ ], "Names": { "CreateListUpdateDeleteOperationTags": [ - "operationTag8488", - "opreationTag6935" + "operationTag2661", + "opreationTag3690" ] }, "Variables": { @@ -1159,7 +1159,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteProductTags.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteProductTags.json index de71fe0948ee..3e6e9aa0b904 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteProductTags.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TagTest/CreateListUpdateDeleteProductTags.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "96474f97-ad14-48b7-a081-53069b655b1b" + "bb8dbdef-5801-4fc5-8f84-2fef58455a44" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51ca1783-c4a7-4fe8-b1f9-c30c6aa879db", - "9a7bbdcb-472a-4e31-b0c5-30d383850805" + "8d03034c-ea45-40c2-9d42-3fa615f1f533", + "46430089-eb5a-46ee-ad36-065ed2347f17" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-correlation-request-id": [ - "b0d5f513-af7a-4312-ab80-9d2f232935b0" + "91d3905e-3361-4682-ad7d-68202c1642e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185846Z:b0d5f513-af7a-4312-ab80-9d2f232935b0" + "WESTUS:20200207T015715Z:91d3905e-3361-4682-ad7d-68202c1642e5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:46 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8220aec6-c9a3-49c6-b44d-774c4ca7477b" + "f7a17cf3-78c7-4797-8495-2ec23c98ace5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFzct8=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49f9ee4c-44f2-4572-9436-75adff831001" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e03396db-b164-4580-8c7f-b02838222b77" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "bc49aa74-a197-4850-b35b-a76f7102b444" + "bfcc07b2-ff03-4aa2-9c38-ac2bd782fb77" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185847Z:bc49aa74-a197-4850-b35b-a76f7102b444" + "WESTUS:20200207T015715Z:bfcc07b2-ff03-4aa2-9c38-ac2bd782fb77" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:46 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzct8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec9b5c94-5898-4ad0-9b65-32c4fba579ed" + "a449ecff-c9b7-4da4-b56e-8e67c23668f2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97f065f6-ed4a-412e-9764-4b2705dfcb1e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "57673402-28ce-4f60-bfb0-9b9d544836a5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "4bf737c1-d233-4f3f-b831-6b37145aed95" + "e37308d8-10c6-4971-a6a1-d7b79be86c55" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185847Z:4bf737c1-d233-4f3f-b831-6b37145aed95" + "WESTUS:20200207T015715Z:e37308d8-10c6-4971-a6a1-d7b79be86c55" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:46 GMT" - ], "Content-Length": [ - "19" + "34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8805dff-7ddd-4f79-8430-8c748e597179" + "eec27871-92e4-4a30-9627-87b9d39d2727" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:14 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "486f942b-bc6d-4d4f-955f-355ec0dd4b67" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f09acab0-c46b-4ab8-9dd6-b0b5c58cd027" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "c8c3ea3f-f59d-4fd6-9857-ab218d5a5218" + "0b9c0160-fff2-4e13-bebe-0e368bbb5898" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185847Z:c8c3ea3f-f59d-4fd6-9857-ab218d5a5218" + "WESTUS:20200207T015715Z:0b9c0160-fff2-4e13-bebe-0e368bbb5898" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:46 GMT" - ], "Content-Length": [ - "1281" + "1312" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,26 +262,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvcHJvZHVjdFRhZzE0MTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"productTag3810\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9f4161e0-94e1-4b37-b3ca-463edc07bfb2" + "7eeb9b61-3bef-4f6e-bdc4-c8af06e8f117" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,38 +294,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:15 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerM=\"" + "\"AAAAAAAAC/Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25a9dc31-9282-42dd-b724-e6f46c50b343" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c4699cb0-d50e-4c64-bc5f-bbf737a2e067" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "26795f21-67b4-4b61-82d4-915095b70c8b" + "789dd7f3-6ea8-429e-96e2-6427110a0806" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185848Z:26795f21-67b4-4b61-82d4-915095b70c8b" + "WESTUS:20200207T015715Z:789dd7f3-6ea8-429e-96e2-6427110a0806" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:47 GMT" - ], "Content-Length": [ - "323" + "331" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,64 +334,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"productTag9743\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/productTag1413\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"productTag1413\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3810\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvdGFncy9wcm9kdWN0VGFnMTQxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bd1187f-f20a-43cf-be5a-bf7d9653eaa6" + "4edceafa-5f83-44a5-827d-0a4c08f0124f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:15 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerM=\"" + "\"AAAAAAAAC/Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85923323-7226-43ea-870d-365cd22318a6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "533068ba-51b1-4d2e-933f-cf59bb9d373b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "8b91e318-b699-4364-bc85-48d03e1a95f2" + "de69f8b4-58f4-48a3-946a-b59e8d8d1955" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185849Z:8b91e318-b699-4364-bc85-48d03e1a95f2" + "WESTUS:20200207T015716Z:de69f8b4-58f4-48a3-946a-b59e8d8d1955" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:48 GMT" - ], "Content-Length": [ - "349" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,61 +400,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag9743\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag1413\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3810\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvdGFncz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3db3e7e-29e5-4dd4-a356-df41ae35cbd3" + "60f1bab6-a74f-4fd2-b97a-0f0e73e3bf92" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a25f7eb-2fa7-4203-87b3-ce58eba59d46" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6d647291-01ca-41f7-a804-384acb24f6a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "9e92723e-cf02-4765-8847-90617bfce9b3" + "b55ed76f-4191-4abc-97df-7587cd4f3a19" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185849Z:9e92723e-cf02-4765-8847-90617bfce9b3" + "WESTUS:20200207T015716Z:b55ed76f-4191-4abc-97df-7587cd4f3a19" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:48 GMT" - ], "Content-Length": [ - "406" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,64 +463,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag9743\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag1413\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3810\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvdGFncy9wcm9kdWN0VGFnMTQxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7cd57bb-f6ee-42e9-a579-eed5f554de56" + "cace0e65-2627-4f8e-acd9-50589126e4fc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerM=\"" + "\"AAAAAAAAC/Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64f75cc6-768e-436a-b7da-15dbcb401f89" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "df7281ef-6e48-42c3-b2df-0c725c2135a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "316c62c3-39ff-4ace-bbc7-a5408b41dd6a" + "2272a2a0-e7fa-4b36-bba3-0d49baeddc5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185849Z:316c62c3-39ff-4ace-bbc7-a5408b41dd6a" + "WESTUS:20200207T015716Z:2272a2a0-e7fa-4b36-bba3-0d49baeddc5c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:49 GMT" - ], "Content-Length": [ - "349" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag9743\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag1413\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3810\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvdGFncy9wcm9kdWN0VGFnMTQxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "534ab338-ae6e-4bc4-b1df-181b3371139e" + "322a0cd4-f8a2-422e-a047-c29b043db1f6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04208fcd-e1fd-4b45-80a7-e33cf3630e61" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "39c51fad-1d47-447f-b98c-a797a0aa9e00" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "be9a8b4c-5c84-40af-802a-3559889550ab" + "6c09bd85-76dc-4550-89a8-f86729ac2b30" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185852Z:be9a8b4c-5c84-40af-802a-3559889550ab" + "WESTUS:20200207T015718Z:6c09bd85-76dc-4550-89a8-f86729ac2b30" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:51 GMT" - ], "Content-Length": [ "79" ], @@ -596,55 +596,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tagResources?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ1Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3d6bd9c-e4d2-48e9-b694-d3b433c7f372" + "64ec4545-eec2-4561-8378-beaf0db8fc7d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28e425ba-0750-4483-83a1-4295499e19c3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "330d83b3-0e39-45c9-a18a-dd9cf635d269" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "294b7139-1d98-4ff1-9071-f6e820f18d07" + "64c577ad-a8ed-495b-9a19-4e8c7b1e7060" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185851Z:294b7139-1d98-4ff1-9071-f6e820f18d07" + "WESTUS:20200207T015717Z:64c577ad-a8ed-495b-9a19-4e8c7b1e7060" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:50 GMT" - ], "Content-Length": [ "367" ], @@ -655,62 +655,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/productTag9743\",\r\n \"name\": \"productTag3648\"\r\n },\r\n \"product\": {\r\n \"id\": \"/products/starter\",\r\n \"name\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/productTag1413\",\r\n \"name\": \"productTag3810\"\r\n },\r\n \"product\": {\r\n \"id\": \"/products/starter\",\r\n \"name\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvdGFncy9wcm9kdWN0VGFnMTQxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "946cb068-615e-4aef-83b5-77701e1b11cc" + "c2036e7b-b3a4-4d17-9c50-f719c9688825" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:17 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerM=\"" + "\"AAAAAAAAC/Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99c8adf2-d447-4258-b26d-f8b55267f230" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fe9db88c-d0ce-4c27-bcef-9aaec6e95a8b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "6e04d323-1aed-436e-bab5-a0eab603d152" + "c72f502d-1f89-4462-9ea0-5777fe9806be" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185851Z:6e04d323-1aed-436e-bab5-a0eab603d152" + "WESTUS:20200207T015717Z:c72f502d-1f89-4462-9ea0-5777fe9806be" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:50 GMT" - ], "Content-Length": [ "0" ], @@ -722,115 +722,115 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvdGFncy9wcm9kdWN0VGFnMTQxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35c251cf-d779-496c-b985-a47dc167fad0" + "ac128f65-791d-48b3-b037-493073fe81b0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5eddda28-ca0d-4d9a-a924-ebf5b5acaf19" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1aebd831-d98b-475c-8164-0602d2d297cf" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "73d3a64f-34e3-41f1-b548-d9e26bddc3a9" + "cac62f74-806f-4d7e-89b6-6f952a7fff23" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185852Z:73d3a64f-34e3-41f1-b548-d9e26bddc3a9" + "WESTUS:20200207T015718Z:cac62f74-806f-4d7e-89b6-6f952a7fff23" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:51 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3Byb2R1Y3RzL3N0YXJ0ZXIvdGFncy9wcm9kdWN0VGFnMTQxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c274c409-3cbe-4851-9e64-01f5e3c821cb" + "6143a4ab-beda-458c-bd1b-9a4f3bd127dc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73761b56-08b7-4a96-8f7f-40795156c09c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "84527628-d5b1-4637-b7c7-96826cf26e4d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "e0fc92ed-94c3-46cb-a429-c9995c27714a" + "9e844fb2-92bc-4675-bdae-48c98b6a61a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185853Z:e0fc92ed-94c3-46cb-a429-c9995c27714a" + "WESTUS:20200207T015718Z:9e844fb2-92bc-4675-bdae-48c98b6a61a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:52 GMT" - ], "Expires": [ "-1" ] @@ -839,58 +839,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvcHJvZHVjdFRhZzE0MTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6f617bf-970b-4e19-810d-683cbc829bf6" + "33af7721-f542-4f53-baa2-cff96bd4ec08" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:17 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAerM=\"" + "\"AAAAAAAAC/Y=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c86750bc-8005-4215-b9c7-b1620eecfef6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "93cfb131-3b60-4ecc-bbd0-fc3e66a51005" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "36d00621-7d52-4867-866e-510b932cbe33" + "0242c063-ca92-45bf-8676-f75e6bf10b31" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185852Z:36d00621-7d52-4867-866e-510b932cbe33" + "WESTUS:20200207T015718Z:0242c063-ca92-45bf-8676-f75e6bf10b31" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:51 GMT" - ], "Content-Length": [ "0" ], @@ -902,55 +902,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvcHJvZHVjdFRhZzE0MTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1c45aad-ecec-475f-b90e-994836e9cc5e" + "eba5f026-3ffd-46af-a8e6-136f22ed9225" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5db5c21-b869-48ca-afe3-746b03a2201e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "59afd910-73bd-40e2-a1b1-46fed5ede4a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "5094f595-725f-4bbb-b238-970ad0e96874" + "7bf56231-46a3-4165-8ac1-a59d10efc0bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185852Z:5094f595-725f-4bbb-b238-970ad0e96874" + "WESTUS:20200207T015718Z:7bf56231-46a3-4165-8ac1-a59d10efc0bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:52 GMT" - ], "Content-Length": [ "0" ], @@ -962,121 +962,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvcHJvZHVjdFRhZzE0MTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2b1f021-45c2-444e-8877-c3736b12f654" + "5fb564b3-a425-4a45-a6e5-f28be12d6504" ], "If-Match": [ - "\"AAAAAAAAerM=\"" + "\"AAAAAAAAC/Y=\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48310207-b488-4105-8b67-49b028e941ba" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2aabb551-1f8d-4f0c-bafb-7f074458a936" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "02f3625e-8e11-4c15-b9e3-737f1be6c25a" + "daf509de-b665-4408-a901-55212abf0ac2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185852Z:02f3625e-8e11-4c15-b9e3-737f1be6c25a" + "WESTUS:20200207T015718Z:daf509de-b665-4408-a901-55212abf0ac2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:52 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tags/productTag1413?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RhZ3MvcHJvZHVjdFRhZzE0MTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "394eec24-01d6-4e0f-81c9-735e66d5f6d5" + "e9229e0d-e108-41f9-8e77-d8f6f08cf772" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:57:18 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2f04b6f-0d29-438a-910b-44a1888314c2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "769e5db8-ed44-4bd1-94bf-9c3fffd6ffe5" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "074be6c6-1658-4a0b-bcdd-8d5159cde80e" + "c98719f9-d249-4129-916e-60dc836cc026" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T185853Z:074be6c6-1658-4a0b-bcdd-8d5159cde80e" + "WESTUS:20200207T015718Z:c98719f9-d249-4129-916e-60dc836cc026" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 18:58:52 GMT" - ], "Expires": [ "-1" ] @@ -1087,8 +1087,8 @@ ], "Names": { "CreateListUpdateDeleteProductTags": [ - "productTag9743", - "productTag3648" + "productTag1413", + "productTag3810" ] }, "Variables": { @@ -1096,7 +1096,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessGitTests/GetUpdateKeys.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessGitTests/GetUpdateKeys.json index 302f9b514e78..2959c78a1145 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessGitTests/GetUpdateKeys.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessGitTests/GetUpdateKeys.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bb6a9d6f-bf74-4144-9bde-e56a9240499d" + "2ce01ca6-5148-4264-99f9-d25e5decec61" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:13 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30f57e02-0416-4051-9a44-148901e00c68", - "3c41974f-4528-4cba-818a-92ea2d0fef78" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8afebf8e-5017-42f4-add3-c80a864372a7", + "1ff095f6-8c5a-4997-9fe7-4deef0a1ae16" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "1fae7667-90d6-46a3-bf03-c52e5d5795d0" + "575db856-af4e-44b3-9b9f-0d772371f54e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020423Z:1fae7667-90d6-46a3-bf03-c52e5d5795d0" + "WESTUS:20200207T005314Z:575db856-af4e-44b3-9b9f-0d772371f54e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:22 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9a9df20-ebf1-4bea-9f01-a547daacd0b2" + "424d35d0-25f8-41fe-a1ab-a7bb2ca5e664" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:13 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0284bd1-45e0-4734-950e-674a805e174e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "68d7fd54-08de-4858-acc5-9ecc7582793b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "f62f695b-ca3f-4b4e-940c-354ce9189fc2" + "9a8639a4-925c-442e-9046-fbdb95ed47ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020423Z:f62f695b-ca3f-4b4e-940c-354ce9189fc2" + "WESTUS:20200207T005314Z:9a8639a4-925c-442e-9046-fbdb95ed47ad" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:22 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access/git?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3MvZ2l0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "700d628a-f118-4e28-8af3-189c2cb4e558" + "7fda0e55-5346-455d-aa42-17bc0cdcb13f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAbmcAAAAAAAAAAA==\"" + "\"AAAAAAAACHYAAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "441e9ce6-85c7-4e3b-9b82-ac929c235800" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f83f62b9-3d8b-4345-bb6c-9975d4bb2902" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "f7d0bc4d-cb12-480a-a188-0baf43fa02e4" + "65ec585b-634c-43f7-b1f2-37e83aa583a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020424Z:f7d0bc4d-cb12-480a-a188-0baf43fa02e4" + "WESTUS:20200207T005315Z:65ec585b-634c-43f7-b1f2-37e83aa583a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:23 GMT" - ], "Content-Length": [ "237" ], @@ -202,62 +202,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"/Lhc405FjXA/plprvDcdNNoq6BQj1FBAOixXA2yyu8VCZZYEwiCk52CpAd2DAp+xYbbj7++z1nOD1sWlFRkaLw==\",\r\n \"secondaryKey\": \"U2bbSpzKm6f78yBTb9rM2z0MZO1WyJ8vvwLSNdBqhAG2D0zeHJZCvn1GEya7OSTAZNpTYzKBFSFNVq9DkGLMwQ==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"VOq1snNEL1/ZlwNK7wEjAcKgaq/ZCzodSRVw9tUjCp1R0oib2CKjNEjCS5T/SlkpqQyOLfG1azDHTabVyoFHhw==\",\r\n \"secondaryKey\": \"2AwBMGuEoyBeMjv2vplj21oej8UywYiA3ZViOWGIbWWK6fGmoHW+Vnp7nTy5YIpzPJHFk6OJwp/QPyhnm1iNDw==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access/git?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3MvZ2l0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ef925bf-4aab-4b4f-ab93-4ed84aa4976e" + "d8d1255b-37e7-47c8-a5d0-edf1bb8504a0" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:15 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcCAAAAAAAAAAAA==\"" + "\"AAAAAAAACWQAAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4e1673a-fb99-4102-847e-fc003f182d75" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "021fc44f-b5d6-485f-995c-9015c4becc6e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "fd30099b-69d3-4a3b-8165-2ed095d3f801" + "c0959f3a-cbe3-492b-ab7a-ec1bb36a9dc2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020424Z:fd30099b-69d3-4a3b-8165-2ed095d3f801" + "WESTUS:20200207T005316Z:c0959f3a-cbe3-492b-ab7a-ec1bb36a9dc2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:23 GMT" - ], "Content-Length": [ "237" ], @@ -268,62 +268,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"awnYx1hknvQNftAM2o7YQY54Tv+OYLhNCrfaPOc5rneJrUklmyDcG3vdzrNIp11FpPI1FEtM6dL0pHrtpyEDTw==\",\r\n \"secondaryKey\": \"U2bbSpzKm6f78yBTb9rM2z0MZO1WyJ8vvwLSNdBqhAG2D0zeHJZCvn1GEya7OSTAZNpTYzKBFSFNVq9DkGLMwQ==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"443q8vEV5/zTWRyoWcxFfDXF5IlDeRYqrpYSKXw/GeTxqt/tY3/pnoMbiHR8zjwxSQkYFCBM3JUSTwnv/Dlx7g==\",\r\n \"secondaryKey\": \"2AwBMGuEoyBeMjv2vplj21oej8UywYiA3ZViOWGIbWWK6fGmoHW+Vnp7nTy5YIpzPJHFk6OJwp/QPyhnm1iNDw==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access/git?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3MvZ2l0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1057b89-6fbb-4a88-b0c1-e149ad3618aa" + "f167b9c1-9848-4c74-9845-4502fa4e0d92" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:16 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcCIAAAAAAAAAAA==\"" + "\"AAAAAAAACWYAAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6732e36a-c72b-43b6-a107-5d7b71b9319f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9376b2c0-3d96-4571-98e9-9d9053cb97cd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "fd410a86-ec4c-476f-adec-20211f48a2bd" + "0cf13072-506b-48cd-b4ad-b107454aff88" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020424Z:fd410a86-ec4c-476f-adec-20211f48a2bd" + "WESTUS:20200207T005317Z:0cf13072-506b-48cd-b4ad-b107454aff88" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:23 GMT" - ], "Content-Length": [ "237" ], @@ -334,59 +334,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"awnYx1hknvQNftAM2o7YQY54Tv+OYLhNCrfaPOc5rneJrUklmyDcG3vdzrNIp11FpPI1FEtM6dL0pHrtpyEDTw==\",\r\n \"secondaryKey\": \"t0JRysYS5al6cJSToiZpKO5rUkJnDvIcSqYEMMU5uzjO0jqnCI5ZedwZhS7LU4MWZn0HvXGEiyEFUnY+VAZneg==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"443q8vEV5/zTWRyoWcxFfDXF5IlDeRYqrpYSKXw/GeTxqt/tY3/pnoMbiHR8zjwxSQkYFCBM3JUSTwnv/Dlx7g==\",\r\n \"secondaryKey\": \"xKU/0JfoLYce3vkwP5UzAhYYY6/oOk9MsKxuDxgEdx3hC8vNPZxnXLY5CnhOUklZBG6rDYABC1ZD/lK/U8RjCQ==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git/regeneratePrimaryKey?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdC9yZWdlbmVyYXRlUHJpbWFyeUtleT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access/git/regeneratePrimaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3MvZ2l0L3JlZ2VuZXJhdGVQcmltYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ac19295-7eff-4f68-85d4-2604d3139a6d" + "11a49597-6ab3-4919-a490-4678962697b5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee8178d4-68c8-4ce1-8c54-1420e33e0944" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "f6f6913c-adb2-4ce7-ba67-bb874493e9dc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "46b7051a-9626-415c-8b31-3934639152c0" + "0528a243-84a6-4e62-82e1-3038cd95e8dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020424Z:46b7051a-9626-415c-8b31-3934639152c0" + "WESTUS:20200207T005316Z:0528a243-84a6-4e62-82e1-3038cd95e8dd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:23 GMT" - ], "Expires": [ "-1" ] @@ -395,55 +395,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git/regenerateSecondaryKey?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdC9yZWdlbmVyYXRlU2Vjb25kYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access/git/regenerateSecondaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3MvZ2l0L3JlZ2VuZXJhdGVTZWNvbmRhcnlLZXk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e86d1e5c-6f07-4b05-9d67-956a454199cf" + "b91504ca-540d-4d86-8985-b5c1631a96b2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 00:53:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ecde203c-6491-4530-876b-d9fbb7ee1ca1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d106bee9-5fde-4129-883d-53585d9dda0d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "13aaf262-caf6-4622-9863-6fc7de69b6bb" + "280a8205-7329-45d8-90d2-523a945ff5d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020424Z:13aaf262-caf6-4622-9863-6fc7de69b6bb" + "WESTUS:20200207T005316Z:280a8205-7329-45d8-90d2-523a945ff5d3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:04:23 GMT" - ], "Expires": [ "-1" ] @@ -458,7 +458,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json index 45dada4cd5dd..d01943432556 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ba36bfca-702d-4824-96ab-fd2b7e776900" + "3720586b-7dda-4649-ba0d-414998091828" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80529691-659e-4f24-8d9d-832b9a82590c", - "f98d9a63-4032-4d38-9c3e-f2710f55093c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fd011438-3445-4753-b5a7-8f5e11698cb7", + "e8333edf-cc07-4a7a-8c22-2ec83d34489f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "d341a972-5eb6-4e5d-9a03-f67cb07eeb67" + "8722c933-02f6-4790-9889-b985aaab7ad7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021433Z:d341a972-5eb6-4e5d-9a03-f67cb07eeb67" + "WESTUS:20200207T010658Z:8722c933-02f6-4790-9889-b985aaab7ad7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:32 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a816e852-a488-4b88-a2dc-120990457e2c" + "7a7e878c-edf1-4594-b343-88e9ca8113eb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7989f478-8dc2-42e0-932e-774aea76242b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7a7b7ea0-14a0-4b57-a819-677cb7d36767" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "d6d4b8ff-1b26-4640-b744-d40926064bae" + "7dcf5314-6302-4f1d-b7e7-ba2981bbefa1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021433Z:d6d4b8ff-1b26-4640-b744-d40926064bae" + "WESTUS:20200207T010658Z:7dcf5314-6302-4f1d-b7e7-ba2981bbefa1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:33 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebed38b6-3cb2-4d20-96ca-a22adda330df" + "5ff7f878-f443-4b7e-911f-953b8da965eb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAb/4AAAAAAAAAAA==\"" + "\"AAAAAAAACHQAAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0e334df-d544-45c1-bdaa-e0c215d4a2b6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b8c12fe8-4dc5-4538-8c50-cd8adf775052" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "10e84dec-f468-4016-9058-f900c4b66e9e" + "5d816c2c-79c9-4138-8cc1-808920463fd9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021433Z:10e84dec-f468-4016-9058-f900c4b66e9e" + "WESTUS:20200207T010658Z:5d816c2c-79c9-4138-8cc1-808920463fd9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:33 GMT" - ], "Content-Length": [ "246" ], @@ -202,62 +202,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"/3MSMRsaOolYTTxS1B2kwMjd4D8j2k0xIX1B1NJpkOlaSX6ZziIi4c/cer7321ZBVyNFmqnqdJ2yClCfeoDPMA==\",\r\n \"secondaryKey\": \"M6yy/BtvE6YSt5RTD3jje66MiSAuHKb8IMNFllziIcMNBhOsv1g9yBrco98TZmhzDz+8qoUS6Epu8Ux7oQqP3w==\",\r\n \"enabled\": false\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"MxiO8n8F9pCUbQPVG/Rk5VH5sYSoGKmFJJinPSKfcv4auR6iAjQRmHxmdlBXMwyjrLiI6y8u0oY1rBuu1FpnMQ==\",\r\n \"secondaryKey\": \"LxbNBlCxSYNNpOQDFBNoVKDSfJ5yilJwPFPTZEmABGKwMOSyktt4DPtBd7LSEDTf5/MdOALBL1xUpRaB/InVjQ==\",\r\n \"enabled\": false\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddcd2c23-7529-4a82-bb9e-e89d3ffd3aac" + "d625693f-b07a-418f-8bde-622cd9d24213" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcgsAAAAAAAAAAA==\"" + "\"AAAAAAAAC14AAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a00ad9c0-eaad-4905-b60c-7bf46dfd954e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "3eb95e3a-79a6-404a-8f9a-217e32c933e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "3df73db2-e48a-40c5-854c-b1f3f3be6a4f" + "03e289ff-9e48-4777-a470-c1a7d8611b97" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021434Z:3df73db2-e48a-40c5-854c-b1f3f3be6a4f" + "WESTUS:20200207T010659Z:03e289ff-9e48-4777-a470-c1a7d8611b97" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:33 GMT" - ], "Content-Length": [ "245" ], @@ -268,62 +268,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"/3MSMRsaOolYTTxS1B2kwMjd4D8j2k0xIX1B1NJpkOlaSX6ZziIi4c/cer7321ZBVyNFmqnqdJ2yClCfeoDPMA==\",\r\n \"secondaryKey\": \"M6yy/BtvE6YSt5RTD3jje66MiSAuHKb8IMNFllziIcMNBhOsv1g9yBrco98TZmhzDz+8qoUS6Epu8Ux7oQqP3w==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"MxiO8n8F9pCUbQPVG/Rk5VH5sYSoGKmFJJinPSKfcv4auR6iAjQRmHxmdlBXMwyjrLiI6y8u0oY1rBuu1FpnMQ==\",\r\n \"secondaryKey\": \"LxbNBlCxSYNNpOQDFBNoVKDSfJ5yilJwPFPTZEmABGKwMOSyktt4DPtBd7LSEDTf5/MdOALBL1xUpRaB/InVjQ==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df722f0e-c82e-45e5-93a8-27d75d36724e" + "0775cf47-8f5f-41ca-a775-7300f0fbdd0c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcgwAAAAAAAAAAA==\"" + "\"AAAAAAAAC18AAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a504169-2527-408a-82a0-776d70686a82" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "119913f3-4e2c-475e-8077-cf53d18cea2b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "8450e092-11dd-4c5c-affe-a371c686633e" + "fa30b3bd-a784-4826-892d-ad288d16be59" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021434Z:8450e092-11dd-4c5c-affe-a371c686633e" + "WESTUS:20200207T010659Z:fa30b3bd-a784-4826-892d-ad288d16be59" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:33 GMT" - ], "Content-Length": [ "245" ], @@ -334,62 +334,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"+uDMwQc3yNj9K8JLomdSzg7OwkUUs8WpfmUoc5MzgICScXS9bdFnt2aJBvgqLJJEijfu6Wm7MuCp/I2bap6t9Q==\",\r\n \"secondaryKey\": \"M6yy/BtvE6YSt5RTD3jje66MiSAuHKb8IMNFllziIcMNBhOsv1g9yBrco98TZmhzDz+8qoUS6Epu8Ux7oQqP3w==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"T9yBMxXsP3t8IXCbSso1nvuCBFbdtmpiimh0Y1z7bMImXH4UaWRHMYTGpJNH5oYuaOlcVuOzUyl5phIas+MkJg==\",\r\n \"secondaryKey\": \"LxbNBlCxSYNNpOQDFBNoVKDSfJ5yilJwPFPTZEmABGKwMOSyktt4DPtBd7LSEDTf5/MdOALBL1xUpRaB/InVjQ==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5fa8538-4251-487a-941c-fc8577531c3f" + "cebde2ae-a123-4103-b262-361baeff54a8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcg4AAAAAAAAAAA==\"" + "\"AAAAAAAAC2EAAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "152f564a-5933-4875-9213-627e882dd090" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a582d2be-3bd0-42e9-8d00-ae1421cd0520" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "156d6927-3819-4ab4-9d55-26fb525748dd" + "81a0c6b5-2ce8-4f08-b2f0-5b0e8e632ede" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021434Z:156d6927-3819-4ab4-9d55-26fb525748dd" + "WESTUS:20200207T010659Z:81a0c6b5-2ce8-4f08-b2f0-5b0e8e632ede" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:34 GMT" - ], "Content-Length": [ "245" ], @@ -400,29 +400,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"+uDMwQc3yNj9K8JLomdSzg7OwkUUs8WpfmUoc5MzgICScXS9bdFnt2aJBvgqLJJEijfu6Wm7MuCp/I2bap6t9Q==\",\r\n \"secondaryKey\": \"lbL6V9+d4hhEVipwryhTgfsVrjzivSeohFpbXXmlUBIJvaL8q7BlvA0okqdiLGLkOnDB2kupmEZULTOVwDPPUg==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"T9yBMxXsP3t8IXCbSso1nvuCBFbdtmpiimh0Y1z7bMImXH4UaWRHMYTGpJNH5oYuaOlcVuOzUyl5phIas+MkJg==\",\r\n \"secondaryKey\": \"sfg7scCws8X9dzR92WI340CB9MVwn/xi8tGa03IGiDjjKGanJ3PPZ79PO8MVyr7Pa8NPd4VJq5D2Zz8uAof1jQ==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a6c12c4-99ac-4126-aa43-6e1bdb19c6df" + "bd418d01-7db4-44bc-a4cc-0239dac70328" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,33 +435,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:57 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13267d66-9017-4b62-9377-8a79bda4b5a5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "020d0215-3bf8-4d05-942f-8702c71f5e33" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "10788e5f-149f-4f1b-8b0b-28cb585dc432" + "018bfff1-2509-4a8c-a99b-c721a696aa8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021434Z:10788e5f-149f-4f1b-8b0b-28cb585dc432" + "WESTUS:20200207T010658Z:018bfff1-2509-4a8c-a99b-c721a696aa8d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:33 GMT" - ], "Expires": [ "-1" ] @@ -470,25 +470,25 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c500609a-a691-4ed9-958c-91e52efbdddf" + "e54fe08c-5ae5-4269-aa88-c6b7917385d0" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -501,33 +501,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7168c597-75ca-4ea5-a31f-00acede49442" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b69cf1f6-3d5d-4b59-a207-d1b7356652a8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "b6781556-1429-4b81-bc59-6b2367f01c7c" + "efe65d00-a97a-4f49-b5d9-1114764ccba7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021434Z:b6781556-1429-4b81-bc59-6b2367f01c7c" + "WESTUS:20200207T010659Z:efe65d00-a97a-4f49-b5d9-1114764ccba7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:34 GMT" - ], "Expires": [ "-1" ] @@ -536,55 +536,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/regeneratePrimaryKey?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL3JlZ2VuZXJhdGVQcmltYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access/regeneratePrimaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3MvcmVnZW5lcmF0ZVByaW1hcnlLZXk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c1aa15b-ebd2-414c-a517-07998e149482" + "2fa38aae-547f-4ef1-8b05-c7b2e6e5dc87" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0f768d5-cc0a-46c3-8c57-e2e625a1f2df" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "56371ea8-66be-4d23-af3a-5dbf4e3f5bb6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "1b3fba05-acb6-48a3-b6dd-31b554394fae" + "2b352f34-14b2-43d3-ad07-eae98eefc749" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021434Z:1b3fba05-acb6-48a3-b6dd-31b554394fae" + "WESTUS:20200207T010659Z:2b352f34-14b2-43d3-ad07-eae98eefc749" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:33 GMT" - ], "Expires": [ "-1" ] @@ -593,55 +593,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/regenerateSecondaryKey?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL3JlZ2VuZXJhdGVTZWNvbmRhcnlLZXk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access/regenerateSecondaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3MvcmVnZW5lcmF0ZVNlY29uZGFyeUtleT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f59f6c08-4619-49ad-b2e5-e972205f2d34" + "7e474ac2-c3a3-437b-a31f-525836c167de" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:06:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d0aca6e-e3a8-4606-bd3a-1e41e37715da" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bb97fe19-4448-4387-8e4a-d9de0c5ca99b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "a9cb2ad4-ac9c-4018-b8a7-cd1a9d508150" + "cd9fc849-5d3a-4c4d-9e4d-f2678798ca8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T021434Z:a9cb2ad4-ac9c-4018-b8a7-cd1a9d508150" + "WESTUS:20200207T010659Z:cd9fc849-5d3a-4c4d-9e4d-f2678798ca8c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:14:33 GMT" - ], "Expires": [ "-1" ] @@ -656,7 +656,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantGitTests/ValidateSaveDeploy.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantGitTests/ValidateSaveDeploy.json index 5084995af08a..ba412b602692 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantGitTests/ValidateSaveDeploy.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantGitTests/ValidateSaveDeploy.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22394e9a-b9bb-4d33-ab94-a3a2f792d35e" + "9100c265-ca31-483e-9fa6-2e3ddef55abb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dbba9966-144d-4e83-adbb-e91b5c0069e2", - "321a31ba-30b0-4e88-8269-de40f471d6ee" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "de01d440-2b07-4002-9f44-f02ed5fd8588", + "b5e69b59-0a70-431f-9c34-67a114b8c636" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "5cd7b068-f995-427a-b9fb-031d4a3b4de2" + "89181e2b-ed31-40e5-a511-b4f93d118906" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020520Z:5cd7b068-f995-427a-b9fb-031d4a3b4de2" + "WESTUS:20200207T010415Z:89181e2b-ed31-40e5-a511-b4f93d118906" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:20 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c8f988d-a24b-49ad-992d-3bf6557df73d" + "07ceb57b-a1c2-459f-9e90-070ddfb071a4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:14 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "258c2c7b-86b2-464b-93f7-ac419e26451f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9064b1e5-dcbf-49d2-850b-1b2ed83dd6d3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "830a36ce-1b3d-4df5-9a33-24d8407c8100" + "8d7ff7de-556c-45f1-a0cb-36cb0c7f9542" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020521Z:830a36ce-1b3d-4df5-9a33-24d8407c8100" + "WESTUS:20200207T010415Z:8d7ff7de-556c-45f1-a0cb-36cb0c7f9542" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:21 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/access/git?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9hY2Nlc3MvZ2l0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d90fdda-c363-44d2-9d88-af764a779b8a" + "9d0c0e0a-b180-460f-90c7-f6cb42ddeea2" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:15 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcCIAAAAAAAAAAA==\"" + "\"AAAAAAAACWYAAAAAAAAAAA==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14112b99-b6ed-430b-bcb8-e74281e1ae42" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a1b88800-52c5-4b3c-b0c1-f5150995d99a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "716226a0-3986-411d-a68d-49f6eaa31f3b" + "df36d627-45ea-4c46-83e7-67e0e98aff13" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020521Z:716226a0-3986-411d-a68d-49f6eaa31f3b" + "WESTUS:20200207T010415Z:df36d627-45ea-4c46-83e7-67e0e98aff13" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:21 GMT" - ], "Content-Length": [ "237" ], @@ -202,61 +202,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"awnYx1hknvQNftAM2o7YQY54Tv+OYLhNCrfaPOc5rneJrUklmyDcG3vdzrNIp11FpPI1FEtM6dL0pHrtpyEDTw==\",\r\n \"secondaryKey\": \"t0JRysYS5al6cJSToiZpKO5rUkJnDvIcSqYEMMU5uzjO0jqnCI5ZedwZhS7LU4MWZn0HvXGEiyEFUnY+VAZneg==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"443q8vEV5/zTWRyoWcxFfDXF5IlDeRYqrpYSKXw/GeTxqt/tY3/pnoMbiHR8zjwxSQkYFCBM3JUSTwnv/Dlx7g==\",\r\n \"secondaryKey\": \"xKU/0JfoLYce3vkwP5UzAhYYY6/oOk9MsKxuDxgEdx3hC8vNPZxnXLY5CnhOUklZBG6rDYABC1ZD/lK/U8RjCQ==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/syncState?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc0ce307-128a-4463-8210-180cc9f836ba" + "58c9965c-af7b-4367-9a00-b40303ece973" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:15 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e7cb79b-4b99-4138-8e8c-5e64f63f922f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "10e62b79-6895-4b4a-a4e0-e2d327df1d95" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "42267aa6-b76f-4e9a-96b3-6cd440abe655" + "24cd98a2-319b-4882-9234-c5444b6543d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020521Z:42267aa6-b76f-4e9a-96b3-6cd440abe655" + "WESTUS:20200207T010416Z:24cd98a2-319b-4882-9234-c5444b6543d4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:21 GMT" - ], "Content-Length": [ - "310" + "158" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,59 +265,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"709678560f72e689e469cf98ba9ba6d1b7736893\",\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-11T01:31:48.1555249Z\",\r\n \"configurationChangeDate\": \"2019-04-11T02:05:09.6627126Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5cae98eab597440f487b0d7c\"\r\n}", + "ResponseBody": "{\r\n \"branch\": null,\r\n \"commitId\": null,\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": null,\r\n \"configurationChangeDate\": \"2020-02-07T01:04:13.8150051Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/syncState?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bfe31bd-edc1-475a-aec0-83e1558ee7a7" + "e823feb7-2759-4e30-bd1c-1e047841d6cf" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf0c69a6-c9ef-4982-83c5-5a320fe29a96" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "285c42b5-dc62-4423-8a8f-24e0b905ce24" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "3f294473-73a8-4e45-b602-e36b7d5b7f5a" + "e4d1382a-73b7-420d-9e49-ff16f8b29461" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020552Z:3f294473-73a8-4e45-b602-e36b7d5b7f5a" + "WESTUS:20200207T010446Z:e4d1382a-73b7-420d-9e49-ff16f8b29461" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:51 GMT" - ], "Content-Length": [ "308" ], @@ -328,59 +328,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"7873d93b0057fecb4246c2c76801672d857f01d0\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-11T02:05:38.3673087Z\",\r\n \"configurationChangeDate\": \"2019-04-11T02:05:09.6627126Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5caea0e1b597440f487b0dc1\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"cdc9d935c651091a1e74863475bd661dc9c14e1c\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-02-07T01:04:45.1901073Z\",\r\n \"configurationChangeDate\": \"2020-02-07T01:04:13.8150051Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5e3cb7902393691028e5c689\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/syncState?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47fe7128-66e0-4422-9f48-11ce345e9b31" + "9020ecf6-d8c9-45d5-a941-009392d70ecc" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13887c05-98fc-4364-b94d-996fe27917c7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ba38e917-fd04-4090-abdc-58b9518ed3eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "353669c4-c2fa-46aa-85a2-5cb706bd23cb" + "39eae8df-23c1-43ed-8d8b-128282a57cb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020653Z:353669c4-c2fa-46aa-85a2-5cb706bd23cb" + "WESTUS:20200207T010548Z:39eae8df-23c1-43ed-8d8b-128282a57cb4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:52 GMT" - ], "Content-Length": [ "309" ], @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"7873d93b0057fecb4246c2c76801672d857f01d0\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-11T02:06:47.1833088Z\",\r\n \"configurationChangeDate\": \"2019-04-11T02:06:47.1833088Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5caea11eb597440f487b0dc5\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"cdc9d935c651091a1e74863475bd661dc9c14e1c\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-02-07T01:05:41.3306366Z\",\r\n \"configurationChangeDate\": \"2020-02-07T01:05:41.3306366Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5e3cb7cd2393691028e5c68d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/save?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zYXZlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/save?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL3NhdmU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3472e993-2299-4f30-a8eb-46788f54fd8c" + "12f3ba82-3db9-4006-9024-94a002a019ee" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -423,36 +423,36 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:15 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea0e1b597440f487b0dc1?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7902393691028e5c689?api-version=2019-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ffb28ae-f1ca-4d96-bebb-6be69b5da86b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5ab7b825-34fb-413b-bc12-0bc944d82376" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "ec50ff99-e79c-4e6a-ad77-193e9cf9492c" + "eefacba2-da51-40cb-a58b-36556f62dd24" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020521Z:ec50ff99-e79c-4e6a-ad77-193e9cf9492c" + "WESTUS:20200207T010416Z:eefacba2-da51-40cb-a58b-36556f62dd24" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:21 GMT" - ], "Content-Length": [ "33" ], @@ -463,53 +463,53 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea0e1b597440f487b0dc1\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7902393691028e5c689\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea0e1b597440f487b0dc1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMGUxYjU5NzQ0MGY0ODdiMGRjMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7902393691028e5c689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWUzY2I3OTAyMzkzNjkxMDI4ZTVjNjg5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85c116af-601f-489e-a306-f5158a69a26f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "665c4c55-ff9b-4816-b659-c8bff4e63d17" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "6f05c60d-81da-402b-9d1a-e8590cd2e979" + "5f119513-1783-48d3-b25d-5f9c9d224f5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020551Z:6f05c60d-81da-402b-9d1a-e8590cd2e979" + "WESTUS:20200207T010446Z:5f119513-1783-48d3-b25d-5f9c9d224f5b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:51 GMT" - ], "Content-Length": [ "272" ], @@ -520,53 +520,53 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea0e1b597440f487b0dc1\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:05:21.56Z\",\r\n \"updated\": \"2019-04-11T02:05:38.36Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 7873d93b0057fecb4246c2c76801672d857f01d0.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7902393691028e5c689\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-07T01:04:16.27Z\",\r\n \"updated\": \"2020-02-07T01:04:45.18Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit cdc9d935c651091a1e74863475bd661dc9c14e1c.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea0e1b597440f487b0dc1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMGUxYjU5NzQ0MGY0ODdiMGRjMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7902393691028e5c689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWUzY2I3OTAyMzkzNjkxMDI4ZTVjNjg5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:45 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4c29bae-0404-40a2-9829-05c5657b3da4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ddbf6eac-0ea9-4734-842a-62daa7c12434" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "44bad980-80d5-4dd0-aeac-6f8cab589f43" + "7b8f7791-d342-466b-86b7-bc1d4d0e1912" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020552Z:44bad980-80d5-4dd0-aeac-6f8cab589f43" + "WESTUS:20200207T010446Z:7b8f7791-d342-466b-86b7-bc1d4d0e1912" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:51 GMT" - ], "Content-Length": [ "272" ], @@ -577,26 +577,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea0e1b597440f487b0dc1\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:05:21.56Z\",\r\n \"updated\": \"2019-04-11T02:05:38.36Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 7873d93b0057fecb4246c2c76801672d857f01d0.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7902393691028e5c689\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-07T01:04:16.27Z\",\r\n \"updated\": \"2020-02-07T01:04:45.18Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit cdc9d935c651091a1e74863475bd661dc9c14e1c.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/validate?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/validate?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f9dd69a0-77ac-44e7-8cfd-1a085b9fd5ba" + "9f05c9b3-12c4-4df7-a2bc-ddcebfc6695b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,36 +609,36 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:04:46 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea100b597440f487b0dc3?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7ae2393691028e5c68b?api-version=2019-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21e123e7-bb25-4d6e-8341-1b231b3d52d2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4217d855-f0f1-4f06-88bf-27d7a2748ce7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "172ee58c-2ced-412a-9102-c8d55bea061d" + "7de9c20d-f5a3-4a3a-9c2d-b2b0395cd4e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020552Z:172ee58c-2ced-412a-9102-c8d55bea061d" + "WESTUS:20200207T010447Z:7de9c20d-f5a3-4a3a-9c2d-b2b0395cd4e3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:52 GMT" - ], "Content-Length": [ "33" ], @@ -649,53 +649,53 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea100b597440f487b0dc3\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7ae2393691028e5c68b\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea100b597440f487b0dc3?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMTAwYjU5NzQ0MGY0ODdiMGRjMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7ae2393691028e5c68b?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWUzY2I3YWUyMzkzNjkxMDI4ZTVjNjhiP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:16 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a88028f-f7c1-4854-bfeb-f394857cc05a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d0154664-e8e9-4f5d-958b-8b3d80542eca" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "e8f38ea8-c5df-484e-a586-56c685734e91" + "ed787e75-6158-4c79-89c4-ed2e8b6f25f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020622Z:e8f38ea8-c5df-484e-a586-56c685734e91" + "WESTUS:20200207T010517Z:ed787e75-6158-4c79-89c4-ed2e8b6f25f7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:21 GMT" - ], "Content-Length": [ "197" ], @@ -706,53 +706,53 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea100b597440f487b0dc3\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:05:52.337Z\",\r\n \"updated\": \"2019-04-11T02:05:57.947Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7ae2393691028e5c68b\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-07T01:04:46.867Z\",\r\n \"updated\": \"2020-02-07T01:04:54.353Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea100b597440f487b0dc3?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMTAwYjU5NzQ0MGY0ODdiMGRjMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7ae2393691028e5c68b?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWUzY2I3YWUyMzkzNjkxMDI4ZTVjNjhiP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:17 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6201ad8d-fd62-4272-bb10-ed438ff6c786" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "006c504e-8d75-4c46-8369-d7a1d338625b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "6a0e18a5-9267-40c2-bf14-9cf35ff4a740" + "f2656606-ff90-49b7-8fb8-2a035123c59d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020622Z:6a0e18a5-9267-40c2-bf14-9cf35ff4a740" + "WESTUS:20200207T010517Z:f2656606-ff90-49b7-8fb8-2a035123c59d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:21 GMT" - ], "Content-Length": [ "197" ], @@ -763,26 +763,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea100b597440f487b0dc3\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:05:52.337Z\",\r\n \"updated\": \"2019-04-11T02:05:57.947Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7ae2393691028e5c68b\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-07T01:04:46.867Z\",\r\n \"updated\": \"2020-02-07T01:04:54.353Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/deploy?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9kZXBsb3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/deploy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL2RlcGxveT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "927fc8d2-1e99-43a9-aed5-5ecadcf28e38" + "ed803b9c-4838-411f-aedb-655c34c1dc3f" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -795,36 +795,36 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:17 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea11eb597440f487b0dc5?api-version=2019-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7cd2393691028e5c68d?api-version=2019-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac8d9645-04c9-4613-b6b8-960625cea21c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7ce0270f-20ab-4169-9922-e45e4d7ae788" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "79bc98a3-e86a-4d87-a724-026526fe6680" + "04a51525-7993-4944-b543-5e5d59f7de08" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020622Z:79bc98a3-e86a-4d87-a724-026526fe6680" + "WESTUS:20200207T010517Z:04a51525-7993-4944-b543-5e5d59f7de08" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:22 GMT" - ], "Content-Length": [ "33" ], @@ -835,55 +835,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea11eb597440f487b0dc5\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7cd2393691028e5c68d\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea11eb597440f487b0dc5?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMTFlYjU5NzQ0MGY0ODdiMGRjNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7cd2393691028e5c68d?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWUzY2I3Y2QyMzkzNjkxMDI4ZTVjNjhkP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:47 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "746c679a-3dc9-4c2c-b14a-643c6b2194b9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "611851b4-098f-4b68-a292-f1e03faf4cc6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "023b7751-f049-499e-9e54-52179199bc29" + "088daee7-be95-4f0e-a06d-a11990766fea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020653Z:023b7751-f049-499e-9e54-52179199bc29" + "WESTUS:20200207T010547Z:088daee7-be95-4f0e-a06d-a11990766fea" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:52 GMT" - ], "Content-Length": [ - "378" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -892,55 +892,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea11eb597440f487b0dc5\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:06:22.68Z\",\r\n \"updated\": \"2019-04-11T02:06:47.167Z\",\r\n \"resultInfo\": \"Latest commit 7873d93b0057fecb4246c2c76801672d857f01d0 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7cd2393691028e5c68d\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-07T01:05:17.463Z\",\r\n \"updated\": \"2020-02-07T01:05:41.327Z\",\r\n \"resultInfo\": \"Latest commit cdc9d935c651091a1e74863475bd661dc9c14e1c was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea11eb597440f487b0dc5?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMTFlYjU5NzQ0MGY0ODdiMGRjNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/tenant/configuration/operationResults/5e3cb7cd2393691028e5c68d?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWUzY2I3Y2QyMzkzNjkxMDI4ZTVjNjhkP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:47 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd58a282-4094-4eed-a293-697e1d9fedcc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "69cb5f2b-9f44-4b6b-9ab8-f3e06c54f8a3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "3eeeb78b-6390-4449-bd56-33751307d3b6" + "d6fc6d56-d367-4c27-bf82-b6f30f7fb729" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020653Z:3eeeb78b-6390-4449-bd56-33751307d3b6" + "WESTUS:20200207T010547Z:d6fc6d56-d367-4c27-bf82-b6f30f7fb729" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:06:52 GMT" - ], "Content-Length": [ - "378" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -949,7 +949,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5caea11eb597440f487b0dc5\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:06:22.68Z\",\r\n \"updated\": \"2019-04-11T02:06:47.167Z\",\r\n \"resultInfo\": \"Latest commit 7873d93b0057fecb4246c2c76801672d857f01d0 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e3cb7cd2393691028e5c68d\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-07T01:05:17.463Z\",\r\n \"updated\": \"2020-02-07T01:05:41.327Z\",\r\n \"resultInfo\": \"Latest commit cdc9d935c651091a1e74863475bd661dc9c14e1c was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 } ], @@ -959,7 +959,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/CreateListUpdateDelete.json index 8cb80be1f90d..0018319e0d16 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/CreateListUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3d831def-67e1-4d93-8ad2-cb99d26d4c77" + "6ec742c3-43a8-4829-8cc4-303b2e05fc85" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b7fff45-7250-453f-8c86-c83119a13207", - "96106f89-512f-452b-ae6d-785c0d9b582a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "29f046f5-2325-4815-bbab-63418e6bac47", + "75a20b7b-a1ec-4afb-9971-c6205f18f026" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "59dffd63-6bff-4029-8192-7faebe3cf66d" + "4f102f73-18db-48b9-b0ba-a1d5549a6ccd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020511Z:59dffd63-6bff-4029-8192-7faebe3cf66d" + "WESTUS:20200207T010553Z:4f102f73-18db-48b9-b0ba-a1d5549a6ccd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:10 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1043457-8060-421b-bb57-9dd0b0bbc141" + "8669c008-ec41-4f42-ae6e-fdbc49041fad" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fb9e35e-28b8-470c-b3a1-0644c40ba4e5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fdcb247d-3fed-4ff1-be3f-7ea30b3632b6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "78b64d34-9d45-419a-9b9f-71a4c76713e1" + "7294a81f-c09a-427a-845d-0e0fbde7db8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020511Z:78b64d34-9d45-419a-9b9f-71a4c76713e1" + "WESTUS:20200207T010553Z:7294a81f-c09a-427a-845d-0e0fbde7db8c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:10 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b1efdf3-648e-4a9d-aa59-89c469661f78" + "b536d7a8-faee-461e-8155-343e8dfa9dcb" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1af287c-a89c-4714-a444-0a5423ebc53a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "21910959-40f9-4af3-8e5b-8d28f8c86a37" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "41a8bf46-8bc8-43d9-b7b8-ec50272b614e" + "0ca2670f-6e35-4e39-89db-b9412a691e22" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020511Z:41a8bf46-8bc8-43d9-b7b8-ec50272b614e" + "WESTUS:20200207T010554Z:0ca2670f-6e35-4e39-89db-b9412a691e22" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:11 GMT" - ], "Content-Length": [ - "667" + "690" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,26 +199,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:19:58.283Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDE0NzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"userNote5180\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"userFirstName3849\",\r\n \"lastName\": \"userLastName9082\",\r\n \"password\": \"userPassword3685\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"userNote7529\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"userFirstName5078\",\r\n \"lastName\": \"userLastName6420\",\r\n \"password\": \"userPassword2869\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0b75ba10-caa8-4c86-abc6-d5e0681f0ee5" + "d5a91738-8ece-426d-9278-513d5ef48a51" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,38 +231,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:53 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcIkAAAAAAABwiw==\"" + "\"AAAAAAAACzMAAAAAAAALNQ==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6620d7f1-271e-4c76-b6ef-b4826c548edb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "23e416d2-1cb6-4db4-9a35-fb7629c07ec2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "7943f2fe-66a0-42da-a896-a06fe4f34dea" + "28ee36aa-5622-4068-81f6-711c063e1847" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020512Z:7943f2fe-66a0-42da-a896-a06fe4f34dea" + "WESTUS:20200207T010554Z:28ee36aa-5622-4068-81f6-711c063e1847" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:11 GMT" - ], "Content-Length": [ - "1091" + "1106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,64 +271,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId4400\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName3849\",\r\n \"lastName\": \"userLastName9082\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:05:11.827Z\",\r\n \"note\": \"userNote5180\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId1473\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName5078\",\r\n \"lastName\": \"userLastName6420\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T01:05:54.28Z\",\r\n \"note\": \"userNote7529\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDE0NzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f5d8c34-e9ec-4d82-a4f8-ff887004b162" + "156171ae-ce85-4ebc-8944-4e8c732e41b8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:54 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcIkAAAAAAABwiw==\"" + "\"AAAAAAAACzMAAAAAAAALNQ==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34478c4e-1b84-45eb-b38f-3e4e57dd77dd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5207e46b-a887-423d-ac11-db1db94b84ba" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "8f7a4bff-fd93-423a-827f-2a4ee2870c22" + "f4b2b220-1d5b-48dd-b113-220a435d91de" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020512Z:8f7a4bff-fd93-423a-827f-2a4ee2870c22" + "WESTUS:20200207T010554Z:f4b2b220-1d5b-48dd-b113-220a435d91de" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:12 GMT" - ], "Content-Length": [ - "616" + "623" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,59 +337,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId4400\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName3849\",\r\n \"lastName\": \"userLastName9082\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:05:11.827Z\",\r\n \"note\": \"userNote5180\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId1473\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName5078\",\r\n \"lastName\": \"userLastName6420\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T01:05:54.28Z\",\r\n \"note\": \"userNote7529\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDE0NzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88f5b3ee-4348-4461-9edc-29a42d2df23f" + "e691f882-177c-49b3-b5bf-9663f71ec5c6" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bacda94c-c7c6-4a3e-a4c1-9536bea42a94" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bf91e2af-f311-4cd2-b739-83e34a484227" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "55414103-a442-4f81-b56b-b3fd86fdecb2" + "339cd427-a919-4ad2-94d7-ab427beb3cb8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020513Z:55414103-a442-4f81-b56b-b3fd86fdecb2" + "WESTUS:20200207T010555Z:339cd427-a919-4ad2-94d7-ab427beb3cb8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:12 GMT" - ], "Content-Length": [ "80" ], @@ -404,57 +404,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3837ae70-59f0-4e75-b187-0ec222e014b4" + "efea8684-4c25-41c3-b6a1-81b769c51b2d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b14ac56b-41a8-423d-9b9a-a0f32a7f3ea6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7eebf5a9-c80e-4077-bea3-c3af5c6a1f94" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "a8ad36e0-1ee8-41d8-9fc1-07db3b9dc432" + "de0ed7e4-ed52-4fda-8370-8b946cc5d956" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020512Z:a8ad36e0-1ee8-41d8-9fc1-07db3b9dc432" + "WESTUS:20200207T010554Z:de0ed7e4-ed52-4fda-8370-8b946cc5d956" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:12 GMT" - ], "Content-Length": [ - "911" + "942" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,59 +463,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:19:58.283Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400/generateSsoUrl?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwL2dlbmVyYXRlU3NvVXJsP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473/generateSsoUrl?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDE0NzMvZ2VuZXJhdGVTc29Vcmw/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e1b0a31-eb3e-42a2-a88c-1e1ca7559d29" + "1584afec-47c4-40b9-bd0d-5d17b30c0f6d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90900db3-e4d8-4648-896e-4dc20fb3ffca" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "432c57ca-2c6d-4438-b187-fe9c86bfc28a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "a7cf463c-b1a0-4798-8418-e043834f0a1a" + "b3414b5f-585b-43fa-b54f-2765ed43e3a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020512Z:a7cf463c-b1a0-4798-8418-e043834f0a1a" + "WESTUS:20200207T010554Z:b3414b5f-585b-43fa-b54f-2765ed43e3a7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:12 GMT" - ], "Content-Length": [ "201" ], @@ -526,26 +526,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"https://sdktestservice.portal.azure-api.net/signin-sso?token=userId4400%26201904110210%26AzYLFKWuK0BHunL%2b%2fAi9X58NWspGdKrHm1r90MfTiSk3b4UQpRZP2YFGczHkXwiIiN%2f7KzB59jZm%2boFsaoF0Rg%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://sdktestservice20190101.portal.azure-api.net/signin-sso?token=userId1473%26202002070110%26alhwPHh80LMFyIMICugsqupLAWeVVCdgqYvXNImB4o99r36lz5e5c3UDUx59mN2sQyDOxA2jSLPakm22tY2G9A%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400/token?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwL3Rva2VuP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473/token?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDE0NzMvdG9rZW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2019-04-21T02:05:12.7861764Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2020-02-17T01:05:54.6457735Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6ba7cdbf-0ee7-4809-a2da-cc73b92b26c9" + "780b8421-50aa-465c-b323-66c6c324d873" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,33 +558,33 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f80504c2-b2f2-4cc8-982e-9ef7d38d51da" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "30d61c79-96e2-4160-8453-54c47ee8b454" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "21f1c83b-7ad4-4e75-8ddb-a5f1cbb12737" + "54cd284e-8dfb-4a37-8625-b27dbcc6f0d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020512Z:21f1c83b-7ad4-4e75-8ddb-a5f1cbb12737" + "WESTUS:20200207T010554Z:54cd284e-8dfb-4a37-8625-b27dbcc6f0d4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:12 GMT" - ], "Content-Length": [ "124" ], @@ -595,125 +595,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"userId4400&201904210205&PK6efjgk4yVre1+tkstQBJcE1Sa8jqI3D48x9+OvCL8/h6KTjA6LhVy5TtALECR/uXyPuzwZ34hHnLJ33kA3NA==\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"userId1473&202002170105&Kz9sB/avt2MXCE9OgfUkX9kvCW8DFKpKZwwKGW/zATv2WFnxMEbCKdh3PZA+8AL4v4sCb2xpyRtDVEZd9VWR/Q==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?deleteSubscriptions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDE0NzM/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e11084e6-d0ca-4c02-9c95-9b0e2e0348d0" + "2760d767-471f-4021-9310-5d4d9b03b3c8" ], "If-Match": [ - "\"AAAAAAAAcIkAAAAAAABwiw==\"" + "\"AAAAAAAACzMAAAAAAAALNQ==\"" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61a2e397-7ecc-4aeb-9d94-b073473a7212" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c356c366-3787-4109-ad0a-32638ea051cf" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "57d22948-c609-4a4a-a2c0-d3c28bcff3ee" + "c5099d70-ce05-40cd-9df4-c2d9a6e07420" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020513Z:57d22948-c609-4a4a-a2c0-d3c28bcff3ee" + "WESTUS:20200207T010555Z:c5099d70-ce05-40cd-9df4-c2d9a6e07420" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:12 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?deleteSubscriptions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId1473?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDE0NzM/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05cf64cf-ff6a-44bb-a3bf-c000c8cbb6bd" + "117eb352-fa0d-4592-9714-a3c842980eba" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:54 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5521bd5-0e32-4a3f-9284-06ea9e205b06" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d3629286-71f2-42b8-bfa2-51b918067fa3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "202dffcd-8257-4c15-a989-6f7e882896b9" + "968225b7-a232-4871-916a-21a5610286f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020513Z:202dffcd-8257-4c15-a989-6f7e882896b9" + "WESTUS:20200207T010555Z:968225b7-a232-4871-916a-21a5610286f4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:12 GMT" - ], "Expires": [ "-1" ] @@ -724,11 +724,11 @@ ], "Names": { "CreateListUpdateDelete": [ - "userId4400", - "userFirstName3849", - "userLastName9082", - "userPassword3685", - "userNote5180" + "userId1473", + "userFirstName5078", + "userLastName6420", + "userPassword2869", + "userNote7529" ] }, "Variables": { @@ -736,7 +736,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/GroupsListAddRemove.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/GroupsListAddRemove.json index 4e5d29bbc846..f46f6e769b3e 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/GroupsListAddRemove.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/GroupsListAddRemove.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9535a591-8b34-443d-aaa7-f91466bfc998" + "be5e69c5-bda2-4fb8-a6dc-af8ed8373f14" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4886c5e-2afc-4de7-bd99-99ed578bde1e", - "449a7bc8-3d64-483c-a865-863e13d749f3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d94239f1-3f50-4f0e-8506-dcc2ba333bf3", + "9458e0b5-1168-403c-8865-ced1a2aac9ff" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "9e45c8f9-47a2-432f-97de-27050cbf4a8f" + "84702c01-5d87-445e-ba50-7580bbf1a1b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020506Z:9e45c8f9-47a2-432f-97de-27050cbf4a8f" + "WESTUS:20200207T010549Z:84702c01-5d87-445e-ba50-7580bbf1a1b1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:06 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b703df-6a34-4a18-8dd9-65b95c794278" + "3e68f466-65a8-43e7-9445-535674728389" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:49 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bdf8b1f-e868-49ec-803d-c9406b721030" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b7631f10-ff0f-4a06-a59c-bbd83f947439" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "5ef710be-4463-44e9-b047-95ecf539e507" + "ddbf666f-4d73-4cd7-97b8-c63c69f889cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020506Z:5ef710be-4463-44e9-b047-95ecf539e507" + "WESTUS:20200207T010549Z:ddbf666f-4d73-4cd7-97b8-c63c69f889cc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:06 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/groupId4512?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9ncm91cElkNDUxMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"groupName5038\",\r\n \"type\": \"custom\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"groupName9696\",\r\n \"type\": \"custom\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3f9eb3d4-6741-48cf-81fc-a9f624d2c0e9" + "395c3729-6622-4833-93a6-22d8286e4c4a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +168,38 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:50 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcHE=\"" + "\"AAAAAAAACxs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b999ddbb-c1a6-4b53-94c3-1ed830fac242" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4d537e21-8e44-4a49-9bea-274e8282f491" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "b38aa76b-a0ea-426d-a7e2-44b53fb8287b" + "f99a8b60-4862-4fea-ab7a-cb3235ef898a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020507Z:b38aa76b-a0ea-426d-a7e2-44b53fb8287b" + "WESTUS:20200207T010550Z:f99a8b60-4862-4fea-ab7a-cb3235ef898a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:07 GMT" - ], "Content-Length": [ - "417" + "425" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,64 +208,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId8073\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5038\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/groupId4512\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId4512\",\r\n \"properties\": {\r\n \"displayName\": \"groupName9696\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/groupId4512?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9ncm91cElkNDUxMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68fc72d1-0d3f-481a-8a88-7a65c1074905" + "c27fead0-1dc7-4bbc-85c2-b1f1e7d49d3e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:50 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcHE=\"" + "\"AAAAAAAACxs=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bd02d74-e3fa-44e5-b70a-2931fc92845d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9cdc0c3d-65fe-4a08-b454-e732342d177e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "a4ff9ec7-9571-4f59-943c-3dffaf5c8d6b" + "018d2a3c-cfd9-48d8-ac23-f8b9616a493b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020507Z:a4ff9ec7-9571-4f59-943c-3dffaf5c8d6b" + "WESTUS:20200207T010550Z:018d2a3c-cfd9-48d8-ac23-f8b9616a493b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:07 GMT" - ], "Content-Length": [ - "417" + "425" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,70 +274,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId8073\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5038\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/groupId4512\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId4512\",\r\n \"properties\": {\r\n \"displayName\": \"groupName9696\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDMxODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"note1686\",\r\n \"email\": \"ivan.ivanov932@contoso.com\",\r\n \"firstName\": \"Ivan3341\",\r\n \"lastName\": \"Ivanov8340\",\r\n \"password\": \"pwd5902\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"note6721\",\r\n \"email\": \"ivan.ivanov1578@contoso.com\",\r\n \"firstName\": \"Ivan6306\",\r\n \"lastName\": \"Ivanov3002\",\r\n \"password\": \"pwd2018\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "683fd3b6-02aa-4fd3-a67c-548bc4ab6c7c" + "9395b7ff-6084-4d1c-8bce-f703a1d10f71" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "209" + "210" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:50 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcHYAAAAAAABweA==\"" + "\"AAAAAAAACyAAAAAAAAALIg==\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d03ed8ba-4d9f-4d6c-a928-603f1b3c6d03" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "fbb29d76-b4b6-4255-8004-d3ca220ac8c6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "83ad8384-3a69-4f18-8910-9c8839cb603d" + "e88ff436-5a62-45b6-b704-9c928e4e0ffd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020508Z:83ad8384-3a69-4f18-8910-9c8839cb603d" + "WESTUS:20200207T010550Z:e88ff436-5a62-45b6-b704-9c928e4e0ffd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:08 GMT" - ], "Content-Length": [ - "1082" + "1099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -346,61 +346,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId4608\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan3341\",\r\n \"lastName\": \"Ivanov8340\",\r\n \"email\": \"ivan.ivanov932@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:05:07.863Z\",\r\n \"note\": \"note1686\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"ivan.ivanov932@contoso.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId3188\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan6306\",\r\n \"lastName\": \"Ivanov3002\",\r\n \"email\": \"ivan.ivanov1578@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T01:05:50.72Z\",\r\n \"note\": \"note6721\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"ivan.ivanov1578@contoso.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDMxODgvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "751ee267-25c3-4ec8-b8f7-904f570479f2" + "0bdb5217-06a8-48f4-82c5-c73cffeb7071" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73ed7c27-a18a-4ab2-b56e-fde690d05ee4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d70ce44c-abad-400a-9953-d9bcf7533722" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "6c245170-3ee0-4e78-b7e7-a1f66ddcc8aa" + "c5658c3c-ec0b-498f-bf28-f4fc8350ed69" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020508Z:6c245170-3ee0-4e78-b7e7-a1f66ddcc8aa" + "WESTUS:20200207T010551Z:c5658c3c-ec0b-498f-bf28-f4fc8350ed69" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:08 GMT" - ], "Content-Length": [ - "615" + "638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -409,61 +409,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDMxODgvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "299cd608-0da5-4804-bc11-dea552123975" + "ac9cf585-6ed4-46c5-9ad1-e3e79fe2e4ee" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "acd55558-ecf0-49f5-8695-2af2931c9433" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "76f51625-02b4-445e-80b9-dbf5fbaa47e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "044d8029-daae-4865-9363-a8b319a65d08" + "45bab49f-acd1-4323-8dc8-d5e786be1abc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020508Z:044d8029-daae-4865-9363-a8b319a65d08" + "WESTUS:20200207T010551Z:45bab49f-acd1-4323-8dc8-d5e786be1abc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:08 GMT" - ], "Content-Length": [ - "1106" + "1137" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,61 +472,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups/groupId8073\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"groupId8073\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5038\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188/groups/groupId4512\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"groupId4512\",\r\n \"properties\": {\r\n \"displayName\": \"groupName9696\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDMxODgvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04eea9b3-5db2-408b-8269-90572db483f9" + "fa986776-9263-4be0-9244-6af51539a311" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fbdb58a0-c96f-416b-b013-08c7fa38e503" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7a2d7928-a372-4078-91e7-cae76cc5f2d8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "58336e66-fe2c-458f-9cba-9b0cebe4e9f6" + "54f12c44-bcbd-44ca-9bc1-807ad2c75bf3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020509Z:58336e66-fe2c-458f-9cba-9b0cebe4e9f6" + "WESTUS:20200207T010552Z:54f12c44-bcbd-44ca-9bc1-807ad2c75bf3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:09 GMT" - ], "Content-Length": [ - "615" + "638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,64 +535,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073/users/userId4608?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzMvdXNlcnMvdXNlcklkNDYwOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/groupId4512/users/userId3188?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9ncm91cElkNDUxMi91c2Vycy91c2VySWQzMTg4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "815c19dc-1f13-4141-b14b-1df903a67f84" + "448bed10-a1d7-4d1c-ae1e-b02c4f43e937" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:51 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAcHw=\"" + "\"AAAAAAAACyY=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8284385b-deb9-439c-9916-90d87931f339" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "864ca828-aec6-428e-b3ef-c407031507f5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "01ccce24-145a-4e35-990c-08b665972005" + "25c9ec40-b6d4-4662-9ee8-454d2cf34f67" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020508Z:01ccce24-145a-4e35-990c-08b665972005" + "WESTUS:20200207T010551Z:25c9ec40-b6d4-4662-9ee8-454d2cf34f67" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:08 GMT" - ], "Content-Length": [ - "554" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -601,190 +601,190 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073/users/userId4608\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"userId4608\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan3341\",\r\n \"lastName\": \"Ivanov8340\",\r\n \"email\": \"ivan.ivanov932@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:05:07.863Z\",\r\n \"note\": \"note1686\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/groupId4512/users/userId3188\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"userId3188\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan6306\",\r\n \"lastName\": \"Ivanov3002\",\r\n \"email\": \"ivan.ivanov1578@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T01:05:50.72Z\",\r\n \"note\": \"note6721\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073/users/userId4608?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzMvdXNlcnMvdXNlcklkNDYwOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/groupId4512/users/userId3188?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9ncm91cElkNDUxMi91c2Vycy91c2VySWQzMTg4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c60bce9b-6d72-4140-b3d0-e8f311fe40dc" + "8206308b-406a-4809-b04f-2613e5a26572" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:51 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f763c6ec-065e-42d5-b93a-f9a9a3fbd769" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ab601b45-8fda-477c-b7ab-0897677e1e3e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "c6cf87db-47bb-4371-89d0-414a29f143b1" + "2bc27df0-7f39-4729-95bc-d543dc5bbbb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020509Z:c6cf87db-47bb-4371-89d0-414a29f143b1" + "WESTUS:20200207T010552Z:2bc27df0-7f39-4729-95bc-d543dc5bbbb0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:08 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608?deleteSubscriptions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/userId3188?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzL3VzZXJJZDMxODg/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a779588-f282-475b-b7e1-0de01ee2ab76" + "93462920-4de2-48c9-ab4c-e625722fdd49" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "901cd07e-72c9-4596-8b72-ad7cd774e423" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "47553660-6145-411f-8d3d-61f6e82d2609" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "527715cd-0c8f-4e35-bca2-d3194a7c5ba2" + "4742fcba-23a5-432f-82c8-069543ae5be5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020509Z:527715cd-0c8f-4e35-bca2-d3194a7c5ba2" + "WESTUS:20200207T010552Z:4742fcba-23a5-432f-82c8-069543ae5be5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:09 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/groups/groupId4512?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL2dyb3Vwcy9ncm91cElkNDUxMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37e4fc60-7565-4a71-b8c9-5f30f1833ed1" + "d29109fd-a7c6-438f-af33-6e611e521581" ], "If-Match": [ "*" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03299179-8df7-4ca3-88bf-fdbd436b4aa4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "5ea2d5f3-f562-406a-987c-314c30232905" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "131edf73-c441-4d07-82fb-10026966c1bd" + "9453f2ea-d615-4ec3-9b66-bba952ef6ced" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020509Z:131edf73-c441-4d07-82fb-10026966c1bd" + "WESTUS:20200207T010552Z:9453f2ea-d615-4ec3-9b66-bba952ef6ced" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:09 GMT" + "Content-Length": [ + "0" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, "ResponseBody": "", @@ -793,14 +793,14 @@ ], "Names": { "GroupsListAddRemove": [ - "groupId8073", - "groupName5038", - "userId4608", - "Ivan3341", - "Ivanov8340", - "ivan.ivanov932", - "pwd5902", - "note1686" + "groupId4512", + "groupName9696", + "userId3188", + "Ivan6306", + "Ivanov3002", + "ivan.ivanov1578", + "pwd2018", + "note6721" ] }, "Variables": { @@ -808,7 +808,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/SubscriptionsList.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/SubscriptionsList.json index eb913c1e6597..870d8f4802c0 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/SubscriptionsList.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/SubscriptionsList.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e316ba68-d070-4190-af57-637efee6b63b" + "3240f071-1fc0-4dd2-909b-8e405845b219" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bce75927-2a34-48dd-a3fe-f3c695f6026a", - "506f5a41-846a-4dbe-8868-e944b4b7fe2d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e5d88547-13f8-4bb1-91dc-8ae11461d00c", + "ae06dd11-1089-4dae-a1b9-d4c553da52f5" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "aaf8d562-3850-4b7d-ac64-710c6c7ed7b2" + "f859f830-80ba-4b19-a851-632a9be7a8ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020514Z:aaf8d562-3850-4b7d-ac64-710c6c7ed7b2" + "WESTUS:20200207T010556Z:f859f830-80ba-4b19-a851-632a9be7a8ac" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:14 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbd6bb09-fd1f-4467-90e7-ac04a16390c1" + "88808d30-a881-4b83-8c26-53df7229b382" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:55 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6a561b2-a728-43e2-a1e0-f7cd85fb5a03" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cb3c3238-4a9a-4855-8879-172b4404092a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "eef0c61c-42a8-4a2d-a2cf-e25df2c4825b" + "9141e74e-26cc-4410-9971-d84bbf9883fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020515Z:eef0c61c-42a8-4a2d-a2cf-e25df2c4825b" + "WESTUS:20200207T010556Z:9141e74e-26cc-4410-9971-d84bbf9883fd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:14 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19837fd4-4f96-47c8-80c3-2218cfbba3f5" + "7007bade-1a08-497e-9e8c-cead26906c43" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a3d3001-6b72-4e0f-b75a-27926590a9d8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bd49c3eb-3e57-4e08-8778-be79bf2f13d1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "052de587-699b-4617-b18e-44cd3cf9b50b" + "39d1b8f8-7931-4757-b25c-f5f3d465b874" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020515Z:052de587-699b-4617-b18e-44cd3cf9b50b" + "WESTUS:20200207T010556Z:39d1b8f8-7931-4757-b25c-f5f3d465b874" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:15 GMT" - ], "Content-Length": [ - "667" + "690" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:19:58.283Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/subscriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzLzEvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0bc267e-8f34-47a5-af71-e12387925ece" + "3dd3d369-ad4e-436a-9637-920da351380a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a564e63-ea11-4a31-a72d-b8c049570275" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "670ec3bb-248a-4b20-adff-88bd91e815d7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "d34eae00-8316-4e0e-b61d-b3f453b560a9" + "f811e579-b71e-4141-922b-e78bea2e3070" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020515Z:d34eae00-8316-4e0e-b61d-b3f453b560a9" + "WESTUS:20200207T010557Z:f811e579-b71e-4141-922b-e78bea2e3070" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:15 GMT" - ], "Content-Length": [ - "2310" + "2372" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions/59442dab78b6e60085070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"secondaryKey\": \"088c12c96e8e4d5198a09c426f134bd0\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5e3cad2f4acd5f008a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:19:59.283Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"f01011258be443508acefd69d070c579\",\r\n \"secondaryKey\": \"83fe51906f2f4d4281111837d735a372\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/subscriptions/5e3cad304acd5f008a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5e3cad304acd5f008a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:20:00.14Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"d60841112eea45c0845b3263acad4cdc\",\r\n \"secondaryKey\": \"c2066cce5a66414890a227c86212b172\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?$top=1&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/subscriptions?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzLzEvc3Vic2NyaXB0aW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ef7d73-b892-4079-88ed-631ffffc3eb7" + "5942a74e-5e9a-455f-a62a-6aebb63f1613" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77f4d51c-39e5-4d3f-a416-4c9e52c98fba" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d2f6284f-a7a2-4491-b7b2-92c9902c4e9f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "c27268df-b057-4c18-a118-b26c3eb74901" + "6bec9563-8caa-4e60-93f4-6fe282dbe5fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020515Z:c27268df-b057-4c18-a118-b26c3eb74901" + "WESTUS:20200207T010557Z:6bec9563-8caa-4e60-93f4-6fe282dbe5fb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:15 GMT" - ], "Content-Length": [ - "1425" + "1472" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,61 +325,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/subscriptions/5e3cad2f4acd5f008a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5e3cad2f4acd5f008a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:19:59.283Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"f01011258be443508acefd69d070c579\",\r\n \"secondaryKey\": \"83fe51906f2f4d4281111837d735a372\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/JTI0dG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMSYlMjRza2lwPTE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzLzEvc3Vic2NyaXB0aW9ucz8lMjR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAxJiUyNHNraXA9MQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "267481d4-d770-436a-af4d-e7d20a7e5a74" + "e1dab188-6265-43a8-bd57-6b3582d9016d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9dcf9e04-5be8-4150-9aaf-ebe456d517c2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9382e81a-921f-4241-8a52-cbe2f4316cc2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "e15a0524-66a2-4228-b0b0-959f3f0b1f87" + "4ee4e0c8-0d80-440f-8d31-975bfb091fa9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020515Z:e15a0524-66a2-4228-b0b0-959f3f0b1f87" + "WESTUS:20200207T010557Z:4ee4e0c8-0d80-440f-8d31-975bfb091fa9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:15 GMT" - ], "Content-Length": [ - "1167" + "1205" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,7 +388,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions/59442dab78b6e60085070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"secondaryKey\": \"088c12c96e8e4d5198a09c426f134bd0\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/subscriptions/5e3cad304acd5f008a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5e3cad304acd5f008a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-07T00:20:00.14Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"d60841112eea45c0845b3263acad4cdc\",\r\n \"secondaryKey\": \"c2066cce5a66414890a227c86212b172\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 } ], @@ -398,7 +398,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" } diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/UserIdentities.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/UserIdentities.json index 750f3af0fe83..8693d7efea4c 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/UserIdentities.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/UserTests/UserIdentities.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bd7ace6e-67c2-4a3f-bc35-6bcbcef01172" + "e5c06a44-daf9-4309-ae15-ac825b7dec90" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:57 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59a4bde9-95f0-4baa-ab6f-cda2ac1e4b1e", - "f00f1c61-4cda-4363-8ce5-fd656a6884bf" + "c7a0211c-1746-4a62-9955-d9203eaedb67", + "e81ee4d7-9d26-4c53-a2bc-d64f74178e32" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1199" ], "x-ms-correlation-request-id": [ - "6d546f50-4b02-4667-b02b-2cbe253e2785" + "fb807fd4-0ebd-4fa2-8f0a-a4777183fba8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020518Z:6d546f50-4b02-4667-b02b-2cbe253e2785" + "WESTUS:20200207T010558Z:fb807fd4-0ebd-4fa2-8f0a-a4777183fba8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:18 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65c23821-6e61-4ab3-bd51-9cb1317a14fb" + "7b32515c-bf4f-4e24-9acd-b4d1041e1465" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:58 GMT" + ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFuRAQ=\"" + "\"AAAAAAABp+o=\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "246fcfd4-599e-43f9-8f4b-50d273ad5d1c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "431edd34-db57-448f-bd82-c3d95011675e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "ad5ba147-80d1-4e7d-a6ef-1a0373611732" + "71c72e9c-ddb6-4ce5-af2b-7222149e4f76" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020518Z:ad5ba147-80d1-4e7d-a6ef-1a0373611732" + "WESTUS:20200207T010558Z:71c72e9c-ddb6-4ce5-af2b-7222149e4f76" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:18 GMT" - ], "Content-Length": [ - "2039" + "2188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFuRAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101\",\r\n \"name\": \"sdktestservice20190101\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAABp+o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-07T00:15:54.6331815Z\",\r\n \"gatewayUrl\": \"https://sdktestservice20190101.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice20190101-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice20190101.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktestservice20190101.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice20190101.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice20190101.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice20190101.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?$filter=firstName%20eq%20'Administrator'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz8kZmlsdGVyPWZpcnN0TmFtZSUyMGVxJTIwJ0FkbWluaXN0cmF0b3InJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users?$filter=firstName%20eq%20'Administrator'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAnQWRtaW5pc3RyYXRvcicmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63ec7165-38d6-42b9-8ea1-1ca9bef312fa" + "d055f83e-3c83-4479-a4a0-b6545e8b9223" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "169ca52d-a0b3-4e45-a7e1-305c2ed56259" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bfe8ac76-3229-44b2-b360-d0ebaf652986" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "4ab4e456-9b72-483d-a864-5bcdc8cf81db" + "701cf448-a095-499e-9929-0d520f62d243" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020518Z:4ab4e456-9b72-483d-a864-5bcdc8cf81db" + "WESTUS:20200207T010559Z:701cf448-a095-499e-9929-0d520f62d243" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:18 GMT" - ], "Content-Length": [ - "667" + "690" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,59 +199,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-07T00:19:58.283Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/identities?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL2lkZW50aXRpZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice20190101/users/1/identities?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZTIwMTkwMTAxL3VzZXJzLzEvaWRlbnRpdGllcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc6ef5ce-fef6-40d9-9d15-1f082ca319eb" + "2c9f0b05-a434-47e7-b483-3d1f0510ad2c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Fri, 07 Feb 2020 01:05:58 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bed0ac31-97b2-464f-a5d5-1f2829f764b0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "88e46bf5-fc0b-4b16-aaab-6d2f7f74bbdf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "150d8aa4-18d2-4ba1-a7cf-ad9e8a623328" + "acca862e-6e25-4198-96f1-b391b55333f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T020518Z:150d8aa4-18d2-4ba1-a7cf-ad9e8a623328" + "WESTUS:20200207T010559Z:acca862e-6e25-4198-96f1-b391b55333f6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 02:05:18 GMT" - ], "Content-Length": [ "86" ], @@ -272,7 +272,7 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestservice", + "ServiceName": "sdktestservice20190101", "Location": "CentralUS", "ResourceGroup": "Api-Default-CentralUS" }