From 87720bea562aafcad4c1d5a43e5d2d5dcf44af8e Mon Sep 17 00:00:00 2001 From: nachakra <40373275+nachakra@users.noreply.github.com> Date: Tue, 19 Mar 2019 13:33:20 -0700 Subject: [PATCH] Add support and tests for SSL on custom domains in CDN (#5406) * Add support and tests for SSL on custom domains in CDN * Fix the test failure for profiles * Fix the build and refactor the profile tests Since we use an existing susbscription that is used for other testing too, the tests failed beacuse they assumed it is a clean subscription. I changed that assumption so that they(hopefully) work with any subscription in record mode. * Update nuget package version * Update file version * Update the moinor version since new functionality was added --- .../ScenarioTests/CustomDomainTests.cs | 41 +- .../Cdn.Tests/ScenarioTests/ProfileTests.cs | 46 +- .../CustomDomainCRUDTest.json | 4177 ++++++++++++----- .../ProfileCheckUsageTest.json | 1190 ++--- .../ProfileListBySubcriptionTest.json | 1471 +++--- .../Generated/CdnManagementClient.cs | 2 + .../Generated/CustomDomainsOperations.cs | 49 +- .../CustomDomainsOperationsExtensions.cs | 22 +- .../Generated/ICustomDomainsOperations.cs | 10 +- .../Generated/IProfilesOperations.cs | 2 +- .../Models/CacheExpirationActionParameters.cs | 6 +- .../Models/CdnCertificateSourceParameters.cs | 82 + .../Models/CdnManagedHttpsParameters.cs | 80 + .../Generated/Models/CertificateType.cs | 22 + .../Generated/Models/CidrIpAddress.cs | 4 +- .../Generated/Models/CustomDomain.cs | 2 +- .../Models/CustomDomainHttpsParameters.cs | 71 + .../Generated/Models/Endpoint.cs | 14 +- .../Models/EndpointUpdateParameters.cs | 10 +- .../Generated/Models/ErrorResponse.cs | 4 +- .../KeyVaultCertificateSourceParameters.cs | 153 + .../Generated/Models/ProtocolType.cs | 22 + .../Models/UserManagedHttpsParameters.cs | 80 + .../Generated/ProfilesOperations.cs | 2 +- .../Generated/ProfilesOperationsExtensions.cs | 4 +- .../Microsoft.Azure.Management.Cdn.csproj | 4 +- .../Management.Cdn/Properties/AssemblyInfo.cs | 2 +- src/SDKs/_metadata/cdn_resource-manager.txt | 6 +- 28 files changed, 5219 insertions(+), 2359 deletions(-) create mode 100644 src/SDKs/Cdn/Management.Cdn/Generated/Models/CdnCertificateSourceParameters.cs create mode 100644 src/SDKs/Cdn/Management.Cdn/Generated/Models/CdnManagedHttpsParameters.cs create mode 100644 src/SDKs/Cdn/Management.Cdn/Generated/Models/CertificateType.cs create mode 100644 src/SDKs/Cdn/Management.Cdn/Generated/Models/CustomDomainHttpsParameters.cs create mode 100644 src/SDKs/Cdn/Management.Cdn/Generated/Models/KeyVaultCertificateSourceParameters.cs create mode 100644 src/SDKs/Cdn/Management.Cdn/Generated/Models/ProtocolType.cs create mode 100644 src/SDKs/Cdn/Management.Cdn/Generated/Models/UserManagedHttpsParameters.cs diff --git a/src/SDKs/Cdn/Cdn.Tests/ScenarioTests/CustomDomainTests.cs b/src/SDKs/Cdn/Cdn.Tests/ScenarioTests/CustomDomainTests.cs index 9c418dac18f7d..c0a2bef3f6803 100644 --- a/src/SDKs/Cdn/Cdn.Tests/ScenarioTests/CustomDomainTests.cs +++ b/src/SDKs/Cdn/Cdn.Tests/ScenarioTests/CustomDomainTests.cs @@ -16,7 +16,7 @@ namespace Cdn.Tests.ScenarioTests { public class CustomDomainTests { - [Fact(Skip = "ReRecord due to CR change")] + [Fact] public void CustomDomainCRUDTest() { var handler1 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; @@ -36,7 +36,7 @@ public void CustomDomainCRUDTest() Profile createParameters = new Profile { Location = "WestUs", - Sku = new Sku { Name = SkuName.StandardVerizon }, + Sku = new Sku { Name = SkuName.StandardMicrosoft }, Tags = new Dictionary { {"key1","value1"}, @@ -70,13 +70,13 @@ public void CustomDomainCRUDTest() Assert.Empty(customDomains); // NOTE: There is a CName mapping already created for this custom domain and endpoint hostname - // "sdk-1-f3757d2a3e10.azureedge-test.net" maps to "endpoint-f3757d2a3e10.azureedge.net" - // "sdk-2-f3757d2a3e10.azureedge-test.net" maps to "endpoint-f3757d2a3e10.azureedge.net" + // "sdk-1-f3757d2a3e10.DUSTYDOGPETCARE.US" maps to "endpoint-f3757d2a3e10.azureedge.net" + // "sdk-2-f3757d2a3e10.DUSTYDOGPETCARE.US" maps to "endpoint-f3757d2a3e10.azureedge.net" // Create custom domain on running endpoint should succeed string customDomainName1 = TestUtilities.GenerateName("customDomain"); - cdnMgmtClient.CustomDomains.Create(resourceGroupName, profileName, endpointName, customDomainName1, "sdk-1-f3757d2a3e10.azureedge-test.net"); + cdnMgmtClient.CustomDomains.Create(resourceGroupName, profileName, endpointName, customDomainName1, "sdk-1-f3757d2a3e10.DUSTYDOGPETCARE.US"); // List custom domains one this endpoint should return one customDomains = cdnMgmtClient.CustomDomains.ListByEndpoint(resourceGroupName, profileName, endpointName); @@ -87,13 +87,13 @@ public void CustomDomainCRUDTest() // Create another custom domain on stopped endpoint should succeed string customDomainName2 = TestUtilities.GenerateName("customDomain"); - cdnMgmtClient.CustomDomains.Create(resourceGroupName, profileName, endpointName, customDomainName2, "sdk-2-f3757d2a3e10.azureedge-test.net"); + cdnMgmtClient.CustomDomains.Create(resourceGroupName, profileName, endpointName, customDomainName2, "sdk-2-f3757d2a3e10.DUSTYDOGPETCARE.US"); // List custom domains one this endpoint should return two customDomains = cdnMgmtClient.CustomDomains.ListByEndpoint(resourceGroupName, profileName, endpointName); Assert.Equal(2, customDomains.Count()); - // Enable custom https on custom domain that is already enabled should fail + // Disable custom https on custom domain that is not enabled should fail Assert.ThrowsAny(() => { cdnMgmtClient.CustomDomains.DisableCustomHttps(resourceGroupName, profileName, endpointName, customDomainName2); }); @@ -112,10 +112,25 @@ public void CustomDomainCRUDTest() // Start endpoint cdnMgmtClient.Endpoints.Start(resourceGroupName, profileName, endpointName); - // Enable custom https on custom domain that is already enabled should fail + // Enable custom https using CDN managed certificate on custom domain cdnMgmtClient.CustomDomains.EnableCustomHttps(resourceGroupName, profileName, endpointName, customDomainName1); - // Delete first custom domain on stopped endpoint should succeed + // add the same deleted custom domain again + cdnMgmtClient.CustomDomains.Create(resourceGroupName, profileName, endpointName, customDomainName2, "sdk-2-f3757d2a3e10.DUSTYDOGPETCARE.US"); + + // Enable custom https using BYOC on custom domain + var byocParameters = new KeyVaultCertificateSourceParameters() + { + ResourceGroupName = "byoc", + SecretName = "CdnSDKE2EBYOCTest", + SecretVersion = "526c5d25cc1a46a5bb85ce85ee2b89cc", + SubscriptionId = "3c0124f9-e564-4c42-86f7-fa79457aedc3", + VaultName = "Azure-CDN-BYOC" + }; + + cdnMgmtClient.CustomDomains.EnableCustomHttps(resourceGroupName, profileName, endpointName, customDomainName2, new UserManagedHttpsParameters(ProtocolType.ServerNameIndication, byocParameters)); + + // Delete first custom domain should succeed cdnMgmtClient.CustomDomains.Delete(resourceGroupName, profileName, endpointName, customDomainName1); // Get deleted custom domain should fail @@ -123,6 +138,14 @@ public void CustomDomainCRUDTest() cdnMgmtClient.CustomDomains.Get(resourceGroupName, profileName, endpointName, customDomainName1); }); + // Delete second custom domain should succeed + cdnMgmtClient.CustomDomains.Delete(resourceGroupName, profileName, endpointName, customDomainName2); + + // Get deleted custom domain should fail + Assert.ThrowsAny(() => { + cdnMgmtClient.CustomDomains.Get(resourceGroupName, profileName, endpointName, customDomainName2); + }); + // List custom domains on endpoint should return none customDomains = cdnMgmtClient.CustomDomains.ListByEndpoint(resourceGroupName, profileName, endpointName); Assert.Empty(customDomains); diff --git a/src/SDKs/Cdn/Cdn.Tests/ScenarioTests/ProfileTests.cs b/src/SDKs/Cdn/Cdn.Tests/ScenarioTests/ProfileTests.cs index e8e5a762c547a..d4ec19124914f 100644 --- a/src/SDKs/Cdn/Cdn.Tests/ScenarioTests/ProfileTests.cs +++ b/src/SDKs/Cdn/Cdn.Tests/ScenarioTests/ProfileTests.cs @@ -381,14 +381,14 @@ public void ProfileListBySubcriptionTest() // Create clients var cdnMgmtClient = CdnTestUtilities.GetCdnManagementClient(context, handler1); var resourcesClient = CdnTestUtilities.GetResourceManagementClient(context, handler2); - - // List profiles should return none - var profiles = cdnMgmtClient.Profiles.List(); - Assert.Empty(profiles); - + // Create resource group var resourceGroupName1 = CdnTestUtilities.CreateResourceGroup(resourcesClient); + // List profiles should return all profiles in the subscription + var profiles = cdnMgmtClient.Profiles.List(); + var existingProfileCount = profiles.Count(); + // Create a standard cdn profile string profileName = TestUtilities.GenerateName("profile"); Profile createParameters = new Profile @@ -409,10 +409,6 @@ public void ProfileListBySubcriptionTest() var existingProfile = cdnMgmtClient.Profiles.Get(resourceGroupName1, profileName); VerifyProfilesEqual(profile, existingProfile); - // List profiles should return one profile - profiles = cdnMgmtClient.Profiles.List(); - Assert.Single(profiles); - // Create another resource group var resourceGroupName2 = CdnTestUtilities.CreateResourceGroup(resourcesClient); @@ -432,23 +428,23 @@ public void ProfileListBySubcriptionTest() profile = cdnMgmtClient.Profiles.Create(resourceGroupName2, profileName2, createParameters); VerifyProfileCreated(profile, createParameters); - // List profiles should return two profiles + // List profiles should return the new profiles profiles = cdnMgmtClient.Profiles.List(); - Assert.Equal(2, profiles.Count()); - + Assert.Equal(existingProfileCount + 2, profiles.Count()); + // Delete first profile cdnMgmtClient.Profiles.Delete(resourceGroupName1, profileName); - // List profiles should return only one profile + // List profiles should return initial profile count + 1 profiles = cdnMgmtClient.Profiles.List(); - Assert.Single(profiles); + Assert.Equal(existingProfileCount + 1, profiles.Count()); // Delete second profile cdnMgmtClient.Profiles.Delete(resourceGroupName2, profileName2); - // List profiles should none + // List profiles should return initial profile count profiles = cdnMgmtClient.Profiles.List(); - Assert.Empty(profiles); + Assert.Equal(existingProfileCount, profiles.Count()); // Delete resource groups CdnTestUtilities.DeleteResourceGroup(resourcesClient, resourceGroupName1); @@ -573,13 +569,13 @@ public void ProfileCheckUsageTest() var cdnMgmtClient = CdnTestUtilities.GetCdnManagementClient(context, handler1); var resourcesClient = CdnTestUtilities.GetResourceManagementClient(context, handler2); - // CheckUsage on subscription should return zero profiles + // CheckUsage on subscription to get existing usage for profiles var subscriptionLevelUsages = cdnMgmtClient.ResourceUsage.List(); Assert.Single(subscriptionLevelUsages); - var defaultUsage = subscriptionLevelUsages.First(); - Assert.Equal(25, defaultUsage.Limit); - Assert.Equal(0, defaultUsage.CurrentValue); + var defaultSubscriptionUsage = subscriptionLevelUsages.First(); + var existingSubscriptionUsageLimit = defaultSubscriptionUsage.Limit; + var existingSubscriptionUsageCurrentValue = defaultSubscriptionUsage.CurrentValue; // Create resource group var resourceGroupName = CdnTestUtilities.CreateResourceGroup(resourcesClient); @@ -604,15 +600,15 @@ public void ProfileCheckUsageTest() Assert.Single(subscriptionLevelUsages); var usageAfterCreation = subscriptionLevelUsages.First(); - Assert.Equal(25, usageAfterCreation.Limit); - Assert.Equal(1, usageAfterCreation.CurrentValue); + Assert.Equal(existingSubscriptionUsageLimit, usageAfterCreation.Limit); + Assert.Equal(existingSubscriptionUsageCurrentValue + 1, usageAfterCreation.CurrentValue); - // test Profile level usage + // test Profile level usage - usage for endpoints under the profile var profileLevelUsages = cdnMgmtClient.Profiles.ListResourceUsage(resourceGroupName, profileName); Assert.Single(profileLevelUsages); var profileLevelUsage = profileLevelUsages.First(); - Assert.Equal(10, profileLevelUsage.Limit); + Assert.Equal(25, profileLevelUsage.Limit); Assert.Equal(0, profileLevelUsage.CurrentValue); //Create an endpoint under this profile @@ -638,7 +634,7 @@ public void ProfileCheckUsageTest() Assert.Single(profileLevelUsages); var profileLevelUsageAfterEndpointCreation = profileLevelUsages.First(); - Assert.Equal(10, profileLevelUsageAfterEndpointCreation.Limit); + Assert.Equal(25, profileLevelUsageAfterEndpointCreation.Limit); Assert.Equal(1, profileLevelUsageAfterEndpointCreation.CurrentValue); // Delete resource group diff --git a/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.CustomDomainTests/CustomDomainCRUDTest.json b/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.CustomDomainTests/CustomDomainCRUDTest.json index 72af24188b200..66d0fe8edbfc5 100644 --- a/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.CustomDomainTests/CustomDomainCRUDTest.json +++ b/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.CustomDomainTests/CustomDomainCRUDTest.json @@ -1,105 +1,102 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "4a35a38e-3a05-4b47-940c-356f6fcb44f7" + "871834a0-a1dd-4031-93e8-a2b4d8fa5b29" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387\",\r\n \"name\": \"cdnResourceGroup3387\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "193" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:25:46 GMT" + "Mon, 11 Mar 2019 23:31:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-request-id": [ - "bff85cbd-ca8d-478b-9599-56dbc999c249" + "b8a96703-30af-4b7d-850f-641c04cbdd3d" ], "x-ms-correlation-request-id": [ - "bff85cbd-ca8d-478b-9599-56dbc999c249" + "b8a96703-30af-4b7d-850f-641c04cbdd3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202547Z:bff85cbd-ca8d-478b-9599-56dbc999c249" + "WESTUS2:20190311T233120Z:b8a96703-30af-4b7d-850f-641c04cbdd3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531\",\r\n \"name\": \"cdnResourceGroup531\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTg/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "142" - ], "x-ms-client-request-id": [ - "69e4e31e-843c-4455-9d00-d58424125370" + "b34899ff-c4bb-4a96-929e-4568c3723927" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"profile7118\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "398" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" + "application/json; charset=utf-8" ], + "Content-Length": [ + "144" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:25:49 GMT" + "Mon, 11 Mar 2019 23:31:23 GMT" ], "Pragma": [ "no-cache" @@ -111,13 +108,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "11ff25af-719a-41ba-a336-dd7b225ec0ef" + "a3c10b58-856d-4705-a69a-525f67e684db" ], "x-ms-client-request-id": [ - "69e4e31e-843c-4455-9d00-d58424125370" + "b34899ff-c4bb-4a96-929e-4568c3723927" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/070405ba-1d58-49a0-9838-1979547b5c0d?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/7c311c24-4eeb-42d3-9209-b8d7d6d8c664?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -132,59 +129,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "6585fd44-d4c6-47b1-bc5a-c4241aa7cdf4" + "1047e232-dee0-4423-a98b-0267c35a4b63" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202549Z:6585fd44-d4c6-47b1-bc5a-c4241aa7cdf4" + "WESTUS2:20190311T233124Z:1047e232-dee0-4423-a98b-0267c35a4b63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "399" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile5258\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/070405ba-1d58-49a0-9838-1979547b5c0d?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDcwNDA1YmEtMWQ1OC00OWEwLTk4MzgtMTk3OTU0N2I1YzBkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/7c311c24-4eeb-42d3-9209-b8d7d6d8c664?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy83YzMxMWMyNC00ZWViLTQyZDMtOTIwOS1iOGQ3ZDZkOGM2NjQ/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:25:59 GMT" + "Mon, 11 Mar 2019 23:31:34 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "be2af666-03c8-4c2e-a271-5f58c57f42bb" + "5f0f0596-3626-4775-9520-90090ec773d1" ], "x-ms-client-request-id": [ - "2da2fdad-cd84-4073-af45-1b5da9ec3d79" + "89cf5d59-caa8-49cd-bbd8-acc84760ee0c" ], "OData-Version": [ "4.0" @@ -199,59 +198,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11998" ], "x-ms-correlation-request-id": [ - "24257a74-1d01-4ec1-8dab-ec7ce2760326" + "d539a90c-9636-47ec-83da-849c173d4139" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202559Z:24257a74-1d01-4ec1-8dab-ec7ce2760326" + "WESTUS2:20190311T233134Z:d539a90c-9636-47ec-83da-849c173d4139" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/070405ba-1d58-49a0-9838-1979547b5c0d?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDcwNDA1YmEtMWQ1OC00OWEwLTk4MzgtMTk3OTU0N2I1YzBkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/7c311c24-4eeb-42d3-9209-b8d7d6d8c664?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy83YzMxMWMyNC00ZWViLTQyZDMtOTIwOS1iOGQ3ZDZkOGM2NjQ/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:09 GMT" + "Mon, 11 Mar 2019 23:31:44 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "d3f5e8de-649e-48fb-bae7-e0efc3f523a4" + "0abd9192-1419-4b8c-9f71-31d50335ee3b" ], "x-ms-client-request-id": [ - "047fa0d0-5641-4cd0-a288-11472f8fdeea" + "f1a00611-271d-4746-839e-c06d3199bbeb" ], "OData-Version": [ "4.0" @@ -266,59 +267,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11997" ], "x-ms-correlation-request-id": [ - "0624b250-cd56-4f9b-b6c3-d1cce51d4798" + "f33367fa-e7e2-493e-8111-b59ca584aa25" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202610Z:0624b250-cd56-4f9b-b6c3-d1cce51d4798" + "WESTUS2:20190311T233144Z:f33367fa-e7e2-493e-8111-b59ca584aa25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/070405ba-1d58-49a0-9838-1979547b5c0d?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDcwNDA1YmEtMWQ1OC00OWEwLTk4MzgtMTk3OTU0N2I1YzBkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTg/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:19 GMT" + "Mon, 11 Mar 2019 23:31:44 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "00e79eba-be0f-4abf-8151-4fcb7d3306a9" + "70c74d05-e7f4-4dd4-8c4b-60e7bb59fb88" ], "x-ms-client-request-id": [ - "049b0b04-81a7-4683-94d9-265d4b449238" + "6edfb846-863d-43ed-aa68-64c6a6d398f6" ], "OData-Version": [ "4.0" @@ -333,59 +336,79 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11996" ], "x-ms-correlation-request-id": [ - "ce67cc03-3496-4dfe-8272-1359f314f79e" + "4b51eb8f-0355-40f9-9d68-dcf234f2d4f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202620Z:ce67cc03-3496-4dfe-8272-1359f314f79e" + "WESTUS2:20190311T233145Z:4b51eb8f-0355-40f9-9d68-dcf234f2d4f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "398" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile5258\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "f5b97779-7858-4c96-9db7-1affb9b40920" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "258" ] }, - "ResponseBody": "{\r\n \"name\": \"profile7118\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:19 GMT" + "Mon, 11 Mar 2019 23:31:48 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "3b956408-551a-48c4-9d1c-a0fe98281321" + "bb0bb381-7c1d-4b84-ad42-46731da56f87" ], "x-ms-client-request-id": [ - "6ade683e-cb85-4029-824e-e090fa6b0d4b" + "f5b97779-7858-4c96-9db7-1affb9b40920" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/b701dd27-9910-42ed-a91c-4f4e90007c05?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -399,75 +422,62 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "71d9a75c-3a55-44f5-85fb-bb7916434920" + "ef9ab041-739e-43bf-ac5d-a9381977eb2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202620Z:71d9a75c-3a55-44f5-85fb-bb7916434920" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTA/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "258" - ], - "x-ms-client-request-id": [ - "39015cda-2e84-4ea2-b9dd-e00af7dc3d7f" + "WESTUS2:20190311T233149Z:ef9ab041-739e-43bf-ac5d-a9381977eb2d" ], - "accept-language": [ - "en-US" + "X-Content-Type-Options": [ + "nosniff" ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", - "ResponseHeaders": { "Content-Length": [ - "917" + "916" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" - ], + ] + }, + "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/b701dd27-9910-42ed-a91c-4f4e90007c05?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iNzAxZGQyNy05OTEwLTQyZWQtYTkxYy00ZjRlOTAwMDdjMDU/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:21 GMT" + "Mon, 11 Mar 2019 23:31:58 GMT" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "a9232f82-e6bc-4b58-9b63-23a20527cc5a" + "9d549bdd-d1cc-4557-bec0-c3de2357dd6c" ], "x-ms-client-request-id": [ - "39015cda-2e84-4ea2-b9dd-e00af7dc3d7f" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/c06c1296-02cc-406c-844b-2fafa4e5a3c4?api-version=2017-10-12" + "efc32c7e-4b11-431b-bbef-7526d3c51b06" ], "OData-Version": [ "4.0" @@ -481,60 +491,62 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-correlation-request-id": [ - "3f58ac85-57c1-4c6e-8131-d0998e991465" + "855b9a6d-5da7-48b4-9614-459e6517ede7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202622Z:3f58ac85-57c1-4c6e-8131-d0998e991465" + "WESTUS2:20190311T233159Z:855b9a6d-5da7-48b4-9614-459e6517ede7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/c06c1296-02cc-406c-844b-2fafa4e5a3c4?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYzA2YzEyOTYtMDJjYy00MDZjLTg0NGItMmZhZmE0ZTVhM2M0P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/b701dd27-9910-42ed-a91c-4f4e90007c05?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iNzAxZGQyNy05OTEwLTQyZWQtYTkxYy00ZjRlOTAwMDdjMDU/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:32 GMT" + "Mon, 11 Mar 2019 23:32:09 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "00c5fddc-82ee-4206-afb3-b554ef6eb6ba" + "4e4e061e-c68a-4520-89c0-84cc2b11a3e1" ], "x-ms-client-request-id": [ - "3fad137c-8a61-44ac-964a-5fec10458b48" + "77fb3768-633f-4cfd-97b7-8a63c59f0a3a" ], "OData-Version": [ "4.0" @@ -549,59 +561,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11994" ], "x-ms-correlation-request-id": [ - "48fe002d-bcee-4646-a2d1-54c2e1c82ee4" + "a3c095d2-80c1-466d-a130-3aeb722af633" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202632Z:48fe002d-bcee-4646-a2d1-54c2e1c82ee4" + "WESTUS2:20190311T233209Z:a3c095d2-80c1-466d-a130-3aeb722af633" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTA/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:33 GMT" + "Mon, 11 Mar 2019 23:32:09 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "5bb6a9ee-bccf-48a5-b04f-62a728ddfab8" + "ae567265-68cc-4aa6-92cb-05f5ce89c33c" ], "x-ms-client-request-id": [ - "dade1ffc-efec-4b7e-9ec6-d73216583a0a" + "379745e7-1ee7-4c81-b863-b12464889b1f" ], "OData-Version": [ "4.0" @@ -616,65 +630,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11993" ], "x-ms-correlation-request-id": [ - "b80fe7fc-2fe9-4381-89b6-6eff69a805bf" + "ee459df1-75e8-40e8-ae01-44d6972f68cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202633Z:b80fe7fc-2fe9-4381-89b6-6eff69a805bf" + "WESTUS2:20190311T233210Z:ee459df1-75e8-40e8-ae01-44d6972f68cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "916" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25fa24d9-84e7-403f-a912-6d32c54b7b97" + "ce6a72f0-19e8-4bca-9ff9-bfbd51de1e2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:33 GMT" + "Mon, 11 Mar 2019 23:32:10 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "d2901ce5-00e7-4361-b319-89ff563c32d4" + "0dfee1d7-3ae3-4c39-98f0-2656ef657137" ], "x-ms-client-request-id": [ - "25fa24d9-84e7-403f-a912-6d32c54b7b97" + "ce6a72f0-19e8-4bca-9ff9-bfbd51de1e2b" ], "OData-Version": [ "4.0" @@ -689,65 +705,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11992" ], "x-ms-correlation-request-id": [ - "b36ac9a3-f875-46ac-b465-017daf42b868" + "c52dcce6-5c6e-4d07-9148-07068fb0abe0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202633Z:b36ac9a3-f875-46ac-b465-017daf42b868" + "WESTUS2:20190311T233210Z:c52dcce6-5c6e-4d07-9148-07068fb0abe0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b10b243-986b-494a-9b7b-ff290dc51c91" + "e125de81-7111-4509-bdc7-e3299d383d52" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain6021\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6021\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:44 GMT" + "Mon, 11 Mar 2019 23:32:23 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "1af78813-f87c-4027-a917-c1cd69e93fac" + "af600af6-3b59-42fa-820d-ead4e37ca5cc" ], "x-ms-client-request-id": [ - "0b10b243-986b-494a-9b7b-ff290dc51c91" + "e125de81-7111-4509-bdc7-e3299d383d52" ], "OData-Version": [ "4.0" @@ -762,65 +780,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11989" ], "x-ms-correlation-request-id": [ - "e8c6754e-f2b8-42bf-b47f-e797b96af3a4" + "192de6d5-9a03-40e2-9df0-ae45637863bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202645Z:e8c6754e-f2b8-42bf-b47f-e797b96af3a4" + "WESTUS2:20190311T233224Z:192de6d5-9a03-40e2-9df0-ae45637863bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "573" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain2251\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain2251\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57ae057f-0882-4363-b79a-8147e277f233" + "73bee1cc-db48-4a01-8781-e5666fac17b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain6021\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6021\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"validationData\": null\r\n }\r\n },\r\n {\r\n \"name\": \"customDomain853\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain853\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:56 GMT" + "Mon, 11 Mar 2019 23:32:51 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "e9875141-db31-4ca6-84c0-be3fa4aba5cb" + "f7d55263-f09b-49af-a9f2-4ae6452848f4" ], "x-ms-client-request-id": [ - "57ae057f-0882-4363-b79a-8147e277f233" + "73bee1cc-db48-4a01-8781-e5666fac17b4" ], "OData-Version": [ "4.0" @@ -835,65 +855,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11985" ], "x-ms-correlation-request-id": [ - "be582b52-5ded-48c3-85fa-34d480af52c0" + "c372ac2d-7a66-4c11-81f1-87d2dd19f303" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202656Z:be582b52-5ded-48c3-85fa-34d480af52c0" + "WESTUS2:20190311T233251Z:c372ac2d-7a66-4c11-81f1-87d2dd19f303" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1119" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain2251\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain2251\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n },\r\n {\r\n \"name\": \"customDomain6157\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6157\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2a7915c-42f7-44fa-ba31-f116eb0f1a3a" + "c04f0fbc-a47f-4efd-8c0e-8fd73291443d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain6021\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6021\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:07 GMT" + "Mon, 11 Mar 2019 23:33:05 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "f3b823b6-be48-48d2-8db7-fd62a36f38fb" + "89f7f45e-d981-4663-af69-3f65c1576de4" ], "x-ms-client-request-id": [ - "e2a7915c-42f7-44fa-ba31-f116eb0f1a3a" + "c04f0fbc-a47f-4efd-8c0e-8fd73291443d" ], "OData-Version": [ "4.0" @@ -908,65 +930,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11981" ], "x-ms-correlation-request-id": [ - "93d3ae74-3911-4b89-80cf-9f9ce9db2e13" + "bd5b4c59-4443-46f1-96b7-29d7d14b352b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202708Z:93d3ae74-3911-4b89-80cf-9f9ce9db2e13" + "WESTUS2:20190311T233305Z:bd5b4c59-4443-46f1-96b7-29d7d14b352b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "573" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain2251\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain2251\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a132308c-73d7-45d5-8a49-0137020e9590" + "5016ef3a-6e30-4976-b86e-dfc04b12b0ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:30 GMT" + "Mon, 11 Mar 2019 23:56:30 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "03c66b4f-40cc-41ef-af95-6e00292fc0e5" + "fe0f2840-390b-439d-bd06-89f4fee4feea" ], "x-ms-client-request-id": [ - "a132308c-73d7-45d5-8a49-0137020e9590" + "5016ef3a-6e30-4976-b86e-dfc04b12b0ab" ], "OData-Version": [ "4.0" @@ -981,56 +1005,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11989" ], "x-ms-correlation-request-id": [ - "f4118413-f940-4d36-88fe-793f53ec529f" + "a4b36b3c-8371-448c-80ef-99d6f8834a37" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202730Z:f4118413-f940-4d36-88fe-793f53ec529f" + "WESTUS2:20190311T235631Z:a4b36b3c-8371-448c-80ef-99d6f8834a37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6021?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42MDIxP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain2251?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjIyNTE/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.DUSTYDOGPETCARE.US\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "85" - ], "x-ms-client-request-id": [ - "af105074-f8ce-4d61-899a-dcb3272a1cca" + "aa04792b-3599-4dd8-ac19-e848c5d7f08a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"customDomain6021\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6021\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"validationData\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "531" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" + "application/json; charset=utf-8" ], + "Content-Length": [ + "85" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:34 GMT" + "Mon, 11 Mar 2019 23:32:12 GMT" ], "Pragma": [ "no-cache" @@ -1042,13 +1071,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "d6336525-3db9-4afa-be87-f1af5700ddeb" + "26526449-f625-462a-baae-dff0cbb2e8c8" ], "x-ms-client-request-id": [ - "af105074-f8ce-4d61-899a-dcb3272a1cca" + "aa04792b-3599-4dd8-ac19-e848c5d7f08a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/80e94607-54f2-4c87-afe4-3173203c084c?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/ee0d810d-9157-47d3-9984-3d812d0d7434?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -1063,59 +1092,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "b8ab1c57-7cc1-4da1-a37c-9d4a2cce0129" + "17903e95-5910-4bde-bdf7-3649c7b56fa2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202634Z:b8ab1c57-7cc1-4da1-a37c-9d4a2cce0129" + "WESTUS2:20190311T233213Z:17903e95-5910-4bde-bdf7-3649c7b56fa2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"customDomain2251\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain2251\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/80e94607-54f2-4c87-afe4-3173203c084c?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODBlOTQ2MDctNTRmMi00Yzg3LWFmZTQtMzE3MzIwM2MwODRjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/ee0d810d-9157-47d3-9984-3d812d0d7434?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9lZTBkODEwZC05MTU3LTQ3ZDMtOTk4NC0zZDgxMmQwZDc0MzQ/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:44 GMT" + "Mon, 11 Mar 2019 23:32:22 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "07b82332-9730-4ab8-822b-525268cde804" + "7dc6dcab-60b3-478b-9659-1c7b996ebb27" ], "x-ms-client-request-id": [ - "1f227ee6-a095-4abb-96dc-cfcc60307e98" + "475ee985-48e7-4ba1-9232-ec5a6e6c35d8" ], "OData-Version": [ "4.0" @@ -1130,59 +1161,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11991" ], "x-ms-correlation-request-id": [ - "1e14c028-076e-42d9-a60a-ff30688813f1" + "10a83c45-1096-4031-9973-2f8ed6451a06" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202644Z:1e14c028-076e-42d9-a60a-ff30688813f1" + "WESTUS2:20190311T233223Z:10a83c45-1096-4031-9973-2f8ed6451a06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6021?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42MDIxP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain2251?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjIyNTE/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"customDomain6021\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6021\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"validationData\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:44 GMT" + "Mon, 11 Mar 2019 23:32:23 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "f8b232e2-54d9-4f1e-b4e7-f4de41cc8d49" + "5aec1e1e-06d2-4245-ac6b-8f1bb1e28153" ], "x-ms-client-request-id": [ - "9bf06b0e-1b69-41ae-a075-dd6cfaa3750a" + "dd7963fc-db13-4e1e-9282-14c6d1e1cf78" ], "OData-Version": [ "4.0" @@ -1197,53 +1230,55 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11990" ], "x-ms-correlation-request-id": [ - "e0d3dc2a-0c60-404e-90e0-257c6e0f3fce" + "7043a841-a50e-4019-bab4-22513cda3f3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202644Z:e0d3dc2a-0c60-404e-90e0-257c6e0f3fce" + "WESTUS2:20190311T233223Z:7043a841-a50e-4019-bab4-22513cda3f3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"customDomain2251\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain2251\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6021?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42MDIxP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain2251?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjIyNTE/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "574f9b35-c8b5-462a-8556-ccee044536b8" + "b55acdb0-a25e-406b-9f50-b1d297a36200" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "104" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Language": [ - "en-US" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:30 GMT" + "Mon, 11 Mar 2019 23:56:07 GMT" ], "Pragma": [ "no-cache" @@ -1252,10 +1287,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "be61c90e-6e46-4a96-9e71-b2c51430b828" + "3fac5df1-17d3-4f80-a1b8-90cbbd3badba" ], "x-ms-client-request-id": [ - "574f9b35-c8b5-462a-8556-ccee044536b8" + "b55acdb0-a25e-406b-9f50-b1d297a36200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1267,56 +1302,64 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11994" ], "x-ms-correlation-request-id": [ - "13051141-4c3e-4166-ada4-d6fbd6eb4ed0" + "8a9fa677-4cde-457a-beb4-71f904a9970f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202730Z:13051141-4c3e-4166-ada4-d6fbd6eb4ed0" + "WESTUS2:20190311T235608Z:8a9fa677-4cde-457a-beb4-71f904a9970f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/stop?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvc3RvcD9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/stop?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbd70ded-8a7a-47da-b770-7c217d2e23ab" + "d694fe62-d147-4cba-a48a-5282d00e6d50" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopping\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain6021\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n}", "ResponseHeaders": { - "Content-Length": [ - "731" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:45 GMT" + "Mon, 11 Mar 2019 23:32:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/2a4232ff-7612-4e85-a05f-f897fff111cd/profileresults/profile7118/endpointresults/endpoint-f3757d2a3e10?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/83548482-fa15-49e9-b841-66c7ca93b19f/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10?api-version=2017-10-12" ], "Retry-After": [ "10" @@ -1325,13 +1368,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "8fa1cccb-9476-4bf0-bfa6-ce45f87b9671" + "cf9ec083-31bd-4eb7-a47f-10340e08b947" ], "x-ms-client-request-id": [ - "cbd70ded-8a7a-47da-b770-7c217d2e23ab" + "d694fe62-d147-4cba-a48a-5282d00e6d50" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/2a4232ff-7612-4e85-a05f-f897fff111cd?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/83548482-fa15-49e9-b841-66c7ca93b19f?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -1346,59 +1389,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "9a0b07e5-d5b8-4ad9-8ecf-a599db5b3d4c" + "e5a2c833-4fd9-4465-ae1b-8232ec2ecd5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202645Z:9a0b07e5-d5b8-4ad9-8ecf-a599db5b3d4c" + "WESTUS2:20190311T233226Z:e5a2c833-4fd9-4465-ae1b-8232ec2ecd5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "731" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopping\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain2251\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/2a4232ff-7612-4e85-a05f-f897fff111cd?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmE0MjMyZmYtNzYxMi00ZTg1LWEwNWYtZjg5N2ZmZjExMWNkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/83548482-fa15-49e9-b841-66c7ca93b19f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy84MzU0ODQ4Mi1mYTE1LTQ5ZTktYjg0MS02NmM3Y2E5M2IxOWY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:55 GMT" + "Mon, 11 Mar 2019 23:32:35 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "c9fea9e3-a91d-498b-aef6-2967d2c8c000" + "00823f0d-7441-4a81-9df9-f87f139d975d" ], "x-ms-client-request-id": [ - "3040def7-216d-40c0-bae2-c349a16654b6" + "fe11f479-d9f2-45c8-b46e-aa710d276e20" ], "OData-Version": [ "4.0" @@ -1413,56 +1458,49 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11988" ], "x-ms-correlation-request-id": [ - "102c9432-d957-4e12-9e3f-b7b956c60b46" + "e49a2b89-c88f-49ca-baac-b62fe7b1e837" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202655Z:102c9432-d957-4e12-9e3f-b7b956c60b46" + "WESTUS2:20190311T233236Z:e49a2b89-c88f-49ca-baac-b62fe7b1e837" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain853?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW44NTM/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"sdk-2-f3757d2a3e10.azureedge-test.net\"\r\n }\r\n}", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/83548482-fa15-49e9-b841-66c7ca93b19f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy84MzU0ODQ4Mi1mYTE1LTQ5ZTktYjg0MS02NmM3Y2E5M2IxOWY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "85" - ], - "x-ms-client-request-id": [ - "0d6ce4de-4a58-4e6a-82a8-4f7587b7c4c7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"customDomain853\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain853\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"validationData\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "528" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:55 GMT" + "Mon, 11 Mar 2019 23:32:46 GMT" ], "Pragma": [ "no-cache" @@ -1471,10 +1509,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "acb4c573-b009-493b-af9d-a9131a4db668" + "ec95dbcb-1251-422a-9e80-6bb8a97a08cf" ], "x-ms-client-request-id": [ - "0d6ce4de-4a58-4e6a-82a8-4f7587b7c4c7" + "30476060-bbef-40ac-9752-6b68df18a7ae" ], "OData-Version": [ "4.0" @@ -1488,54 +1526,50 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "x-ms-correlation-request-id": [ - "1fd4c9e6-b671-4a0f-8cbe-977ea75f3fbb" + "04e1afbb-ecaa-4740-8f0e-13261b95ce32" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202656Z:1fd4c9e6-b671-4a0f-8cbe-977ea75f3fbb" + "WESTUS2:20190311T233246Z:04e1afbb-ecaa-4740-8f0e-13261b95ce32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain853/disableCustomHttps?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW44NTMvZGlzYWJsZUN1c3RvbUh0dHBzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/83548482-fa15-49e9-b841-66c7ca93b19f/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy84MzU0ODQ4Mi1mYTE1LTQ5ZTktYjg0MS02NmM3Y2E5M2IxOWYvcHJvZmlsZXJlc3VsdHMvcHJvZmlsZTUyNTgvZW5kcG9pbnRyZXN1bHRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ae2049ae-aa81-4730-a2e5-ad3880518e60" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The requested operation cannot be executed on the entity in the current state.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "147" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Language": [ - "en-US" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 13 Feb 2018 20:26:56 GMT" + "Date": [ + "Mon, 11 Mar 2019 23:32:47 GMT" ], "Pragma": [ "no-cache" @@ -1544,10 +1578,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "191958d0-7eed-4ab3-8d3e-0ff821b1ab5c" + "d2cf7714-ca0c-407b-89ab-b81775bef28f" ], "x-ms-client-request-id": [ - "ae2049ae-aa81-4730-a2e5-ad3880518e60" + "a7d39d9f-4a6a-4aa8-9daf-3b6565a6cd86" + ], + "OData-Version": [ + "4.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1558,69 +1595,77 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" ], "x-ms-correlation-request-id": [ - "56ac41bc-2798-4d59-b6f0-d4b77f786d05" + "e2128e53-5363-4f98-81a5-e0e69ee6be5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202656Z:56ac41bc-2798-4d59-b6f0-d4b77f786d05" + "WESTUS2:20190311T233247Z:e2128e53-5363-4f98-81a5-e0e69ee6be5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1166" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 400 + "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/83548482-fa15-49e9-b841-66c7ca93b19f/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopped\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain2251\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain853?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW44NTM/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"sdk-2-f3757d2a3e10.DUSTYDOGPETCARE.US\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5d70d4b0-16e2-4921-ac5f-ba16733befee" + "e5dd7c4d-a4c1-4945-9809-ec22a7fe185c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "85" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:26:57 GMT" + "Mon, 11 Mar 2019 23:32:50 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/4ad6b654-edd9-43d7-a438-6f711e2c03a2/profileresults/profile7118/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain853?api-version=2017-10-12" - ], - "Retry-After": [ - "10" - ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "5571d5b5-2b6e-4d01-8be7-d64b09a1ccba" + "b4556154-761b-4426-ba66-cdcb87a953da" ], "x-ms-client-request-id": [ - "5d70d4b0-16e2-4921-ac5f-ba16733befee" + "e5dd7c4d-a4c1-4945-9809-ec22a7fe185c" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/4ad6b654-edd9-43d7-a438-6f711e2c03a2?api-version=2017-10-12" + "OData-Version": [ + "4.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1632,59 +1677,79 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "aff102f4-7a94-46f1-b745-f36da705af00" + "099bb35b-ec43-4b32-999f-4c0eec821d7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202657Z:aff102f4-7a94-46f1-b745-f36da705af00" + "WESTUS2:20190311T233250Z:099bb35b-ec43-4b32-999f-4c0eec821d7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"customDomain6157\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6157\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/4ad6b654-edd9-43d7-a438-6f711e2c03a2?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGFkNmI2NTQtZWRkOS00M2Q3LWE0MzgtNmY3MTFlMmMwM2EyP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"sdk-2-f3757d2a3e10.DUSTYDOGPETCARE.US\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "c013ca01-7d31-4404-a180-aec513c5299d" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "85" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:07 GMT" + "Mon, 11 Mar 2019 23:45:26 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "9f9e0268-fe32-440b-9389-ebd0666853a9" + "74478954-a6b8-49e0-a8c8-f6f7d82aebb7" ], "x-ms-client-request-id": [ - "b106986e-2e3e-4d4d-ad14-e80434d97741" + "c013ca01-7d31-4404-a180-aec513c5299d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/9b55e5ad-e0d6-4004-a968-f8baba185b1b?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -1698,54 +1763,56 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "724fd8ad-8622-4313-a2b2-c613ef021d48" + "e423a94a-b3f7-4056-a1d8-24b4743c03ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202707Z:724fd8ad-8622-4313-a2b2-c613ef021d48" + "WESTUS2:20190311T234527Z:e423a94a-b3f7-4056-a1d8-24b4743c03ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"customDomain6157\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6157\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain853?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW44NTM/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157/disableCustomHttps?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTcvZGlzYWJsZUN1c3RvbUh0dHBzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c17e7e06-838e-4fd0-944c-9ddf2896b801" + "9735d5e1-9144-4c6b-a50b-3bfd5d59ea57" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "104" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Language": [ - "en-US" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:07 GMT" + "Mon, 11 Mar 2019 23:32:51 GMT" ], "Pragma": [ "no-cache" @@ -1754,10 +1821,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "1b6f7c61-34e8-4869-8792-a5eef29a9d90" + "b85abeb7-6138-4f1f-a5dd-66b732fcb634" ], "x-ms-client-request-id": [ - "c17e7e06-838e-4fd0-944c-9ddf2896b801" + "9735d5e1-9144-4c6b-a50b-3bfd5d59ea57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1768,57 +1835,65 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "aa0c2c25-6721-4078-b8b2-fe57d0c9ebc8" + "47c0b1db-c0ae-49c5-99d7-b4aa9e20614a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202707Z:aa0c2c25-6721-4078-b8b2-fe57d0c9ebc8" + "WESTUS2:20190311T233251Z:47c0b1db-c0ae-49c5-99d7-b4aa9e20614a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The requested operation cannot be executed on the entity in the current state.\"\r\n }\r\n}", + "StatusCode": 400 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/start?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvc3RhcnQ/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c99f73f-0e77-4a7e-8924-3ff1003b0acb" + "c25b7098-1897-488d-917e-d7e02504fa51" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Starting\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain6021\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n}", "ResponseHeaders": { - "Content-Length": [ - "731" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:08 GMT" + "Mon, 11 Mar 2019 23:32:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/b8c397de-5157-42d5-b73d-be506a3ff6a3/profileresults/profile7118/endpointresults/endpoint-f3757d2a3e10?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/cdbc194f-a459-43e3-b76f-8c01511f3a86/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6157?api-version=2017-10-12" ], "Retry-After": [ "10" @@ -1827,16 +1902,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "0e9995ca-c218-4f9c-83e4-8d180dc741b6" + "006b6f08-f0ce-400b-a322-2d2b7a650574" ], "x-ms-client-request-id": [ - "8c99f73f-0e77-4a7e-8924-3ff1003b0acb" + "c25b7098-1897-488d-917e-d7e02504fa51" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/b8c397de-5157-42d5-b73d-be506a3ff6a3?api-version=2017-10-12" - ], - "OData-Version": [ - "4.0" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/cdbc194f-a459-43e3-b76f-8c01511f3a86?api-version=2017-10-12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1847,63 +1919,74 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "697a7701-d7f6-4aa8-94c6-708387277f68" + "a079ca03-c432-43ff-bf09-1d9216a5d7f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202708Z:697a7701-d7f6-4aa8-94c6-708387277f68" + "WESTUS2:20190311T233253Z:a079ca03-c432-43ff-bf09-1d9216a5d7f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/b8c397de-5157-42d5-b73d-be506a3ff6a3?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjhjMzk3ZGUtNTE1Ny00MmQ1LWI3M2QtYmU1MDZhM2ZmNmEzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7012f98c-406c-4561-9d4b-72ed79d09bce" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:18 GMT" + "Mon, 11 Mar 2019 23:56:08 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/ca0d1e45-d802-4ac7-8483-f13e929da0e7/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6157?api-version=2017-10-12" + ], + "Retry-After": [ + "10" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "0679204e-4c6d-4ac4-a913-35c1e7fac068" + "f1f96e6a-f04e-43cc-92f4-f00755ae44aa" ], "x-ms-client-request-id": [ - "c2c27cd5-876b-4573-86a2-1a0a0f080667" + "7012f98c-406c-4561-9d4b-72ed79d09bce" ], - "OData-Version": [ - "4.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/ca0d1e45-d802-4ac7-8483-f13e929da0e7?api-version=2017-10-12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,72 +1997,59 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "526b1a81-fa25-4d46-b97a-e35d1eabb380" + "7d000a92-f5db-4fc1-8850-22cae59db631" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202718Z:526b1a81-fa25-4d46-b97a-e35d1eabb380" + "WESTUS2:20190311T235609Z:7d000a92-f5db-4fc1-8850-22cae59db631" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6021/enableCustomHttps?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42MDIxL2VuYWJsZUN1c3RvbUh0dHBzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/cdbc194f-a459-43e3-b76f-8c01511f3a86?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9jZGJjMTk0Zi1hNDU5LTQzZTMtYjc2Zi04YzAxNTExZjNhODY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dffd18b7-0d2d-4d81-a7e4-9755c0cbe693" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"customHttpsProvisioningSubstate\": \"SubmittingDomainControlValidationRequest\",\r\n \"validationData\": null\r\n}", "ResponseHeaders": { - "Content-Length": [ - "256" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:18 GMT" + "Mon, 11 Mar 2019 23:33:03 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/9be7b2f2-c34e-43b2-906b-1f5ef491de53/profileresults/profile7118/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6021?api-version=2017-10-12" - ], - "Retry-After": [ - "120" - ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "dcf54c0c-f81e-4a07-9aed-fb15732de62d" + "52dfd220-56a1-45b2-be13-b11971699508" ], "x-ms-client-request-id": [ - "dffd18b7-0d2d-4d81-a7e4-9755c0cbe693" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/9be7b2f2-c34e-43b2-906b-1f5ef491de53?api-version=2017-10-12" + "e2274314-94dd-46ef-b963-73549ca6c69c" ], "OData-Version": [ "4.0" @@ -1993,69 +2063,62 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "x-ms-correlation-request-id": [ - "f4ce2def-7ce5-485f-ac5f-52c4f2eaf8a9" + "2f9bbd69-e601-4b46-93d1-67fa3686fffd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202719Z:f4ce2def-7ce5-485f-ac5f-52c4f2eaf8a9" + "WESTUS2:20190311T233303Z:2f9bbd69-e601-4b46-93d1-67fa3686fffd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup3387/providers/Microsoft.Cdn/profiles/profile7118/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6021?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTE4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42MDIxP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/cdbc194f-a459-43e3-b76f-8c01511f3a86/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9jZGJjMTk0Zi1hNDU5LTQzZTMtYjc2Zi04YzAxNTExZjNhODYvcHJvZmlsZXJlc3VsdHMvcHJvZmlsZTUyNTgvZW5kcG9pbnRyZXN1bHRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21kb21haW5yZXN1bHRzL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "294ff804-ae9b-451b-b6f4-9ab9fe0b90c5" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:19 GMT" + "Mon, 11 Mar 2019 23:33:04 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/39a89f4c-c390-4077-9217-b532f83c820c/profileresults/profile7118/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6021?api-version=2017-10-12" - ], - "Retry-After": [ - "10" - ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "e1a814b9-f314-48ca-b583-394098979b5c" + "3489413c-56bf-46a2-82a2-9e575beda17b" ], "x-ms-client-request-id": [ - "294ff804-ae9b-451b-b6f4-9ab9fe0b90c5" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/39a89f4c-c390-4077-9217-b532f83c820c?api-version=2017-10-12" + "ae2f27b2-5458-45b1-9e66-fc7c4d96278e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2066,60 +2129,2000 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "417b2280-c20e-43cc-b1c5-d322a879eefd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233304Z:417b2280-c20e-43cc-b1c5-d322a879eefd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7948ae1-3d47-4bb4-9cf3-662af787b6d7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:33:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d486753e-8b01-4dfe-ad6e-7fbdfa5518dc" + ], + "x-ms-client-request-id": [ + "b7948ae1-3d47-4bb4-9cf3-662af787b6d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "42370a67-aa93-4899-a15d-572e6d505956" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233304Z:42370a67-aa93-4899-a15d-572e6d505956" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:45:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "a702a617-f2db-4179-ba8b-a8d92b941106" + ], + "x-ms-client-request-id": [ + "e260c71c-f480-4a3c-b68a-accad9f6569d" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ecd5e7dd-96ae-4519-b1d3-14a6f07ca7ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234537Z:ecd5e7dd-96ae-4519-b1d3-14a6f07ca7ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customDomain6157\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6157\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "312daef9-2d9a-4f34-be16-fdf02b2cf5de" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:56:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "30ac02c8-6ea8-43a5-bfa1-6ed313b9a1be" + ], + "x-ms-client-request-id": [ + "312daef9-2d9a-4f34-be16-fdf02b2cf5de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "5e50d9f7-3c10-48d2-a426-5d9eac6b4700" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235631Z:5e50d9f7-3c10-48d2-a426-5d9eac6b4700" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/start?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a49ed96f-854a-4632-afb1-dd8ec9718b4e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:33:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d21b7217-93ef-4104-8594-e757c7ccec26/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10?api-version=2017-10-12" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "789329bc-405e-47d0-aa4f-8173eeaebf81" + ], + "x-ms-client-request-id": [ + "a49ed96f-854a-4632-afb1-dd8ec9718b4e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d21b7217-93ef-4104-8594-e757c7ccec26?api-version=2017-10-12" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "996848d5-b684-4435-bd9c-9b87cc8c9b09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233306Z:996848d5-b684-4435-bd9c-9b87cc8c9b09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "731" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Starting\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain2251\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d21b7217-93ef-4104-8594-e757c7ccec26?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9kMjFiNzIxNy05M2VmLTQxMDQtODU5NC1lNzU3YzdjY2VjMjY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:33:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "eb764cd6-7340-4e2d-8dee-c82fdf63ee19" + ], + "x-ms-client-request-id": [ + "7c4de761-d38f-45a6-97ef-ae6bfa25290e" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "ef38d803-7809-4973-b4ad-1755c509bbe3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233317Z:ef38d803-7809-4973-b4ad-1755c509bbe3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d21b7217-93ef-4104-8594-e757c7ccec26/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9kMjFiNzIxNy05M2VmLTQxMDQtODU5NC1lNzU3YzdjY2VjMjYvcHJvZmlsZXJlc3VsdHMvcHJvZmlsZTUyNTgvZW5kcG9pbnRyZXN1bHRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:33:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "60cd19dd-bc76-4dc1-a734-842151ca5db2" + ], + "x-ms-client-request-id": [ + "d4ad2769-9cf3-466c-9db6-faadc4956802" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "ed35c90a-f87a-4b67-8fb7-7bd0e58c76d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233317Z:ed35c90a-f87a-4b67-8fb7-7bd0e58c76d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1166" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d21b7217-93ef-4104-8594-e757c7ccec26/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain2251\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain2251/enableCustomHttps?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjIyNTEvZW5hYmxlQ3VzdG9tSHR0cHM/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b49b73d-a414-4f46-8ccd-464174796d96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:33:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain2251?api-version=2017-10-12" + ], + "Retry-After": [ + "120" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "123686e1-9eb8-4d93-9951-a177b2fe1421" + ], + "x-ms-client-request-id": [ + "6b49b73d-a414-4f46-8ccd-464174796d96" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f?api-version=2017-10-12" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "9db694a7-74b4-4abc-b3ca-ad1faf182107" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233320Z:9db694a7-74b4-4abc-b3ca-ad1faf182107" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "256" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"customHttpsProvisioningSubstate\": \"SubmittingDomainControlValidationRequest\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iYzgyZjU4OS00NWE0LTRhYjktOGFjNS1mZTVhZjVjZjIyOGY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:35:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "2a7c227d-2d15-4ee5-8e11-5f4ea6751772" + ], + "x-ms-client-request-id": [ + "4af5fe7b-dad6-4477-bcad-214d923e65fd" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a110bf9b-32c6-4ccb-b326-2ec930614c53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233520Z:a110bf9b-32c6-4ccb-b326-2ec930614c53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iYzgyZjU4OS00NWE0LTRhYjktOGFjNS1mZTVhZjVjZjIyOGY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:37:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "b1207b13-5498-4a3d-aec5-4d24c790c030" + ], + "x-ms-client-request-id": [ + "937bc45f-b490-4380-95c8-f65334c95567" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "b41e8cd0-4cac-48e5-9e78-b704eee57b17" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233721Z:b41e8cd0-4cac-48e5-9e78-b704eee57b17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iYzgyZjU4OS00NWE0LTRhYjktOGFjNS1mZTVhZjVjZjIyOGY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:39:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d5e02361-ac2b-49cc-9e7f-edee7d11b7ac" + ], + "x-ms-client-request-id": [ + "829cde93-9ee8-4854-899c-da5107152138" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c88a6ad8-cf4b-4c18-bd93-231982d336c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T233921Z:c88a6ad8-cf4b-4c18-bd93-231982d336c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iYzgyZjU4OS00NWE0LTRhYjktOGFjNS1mZTVhZjVjZjIyOGY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:41:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "0c0ecd33-23a9-460d-ba90-1460a1e809b4" + ], + "x-ms-client-request-id": [ + "19b16e8b-05b2-4383-87df-7582f9d7ca73" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a7f940fe-0789-40ad-b04a-36b24344eb79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234122Z:a7f940fe-0789-40ad-b04a-36b24344eb79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iYzgyZjU4OS00NWE0LTRhYjktOGFjNS1mZTVhZjVjZjIyOGY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:43:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "e107df44-9fac-42a7-8bcf-f90a824b6457" + ], + "x-ms-client-request-id": [ + "e71da479-21ae-4ea4-86e4-f0297f8388ff" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6b3537a8-cf69-4135-8db6-215ebb0a5500" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234322Z:6b3537a8-cf69-4135-8db6-215ebb0a5500" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iYzgyZjU4OS00NWE0LTRhYjktOGFjNS1mZTVhZjVjZjIyOGY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:45:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "e892f1c7-c50d-4ecb-81a8-48615d097961" + ], + "x-ms-client-request-id": [ + "e7fa9ade-d63b-4775-97c7-96f374509aa4" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8bcf4284-f87c-4747-8442-7f2fa349823b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234523Z:8bcf4284-f87c-4747-8442-7f2fa349823b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain2251?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iYzgyZjU4OS00NWE0LTRhYjktOGFjNS1mZTVhZjVjZjIyOGYvcHJvZmlsZXJlc3VsdHMvcHJvZmlsZTUyNTgvZW5kcG9pbnRyZXN1bHRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21kb21haW5yZXN1bHRzL2N1c3RvbURvbWFpbjIyNTE/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:45:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "3befd75e-e023-4ff4-a078-1f948d59715c" + ], + "x-ms-client-request-id": [ + "73e6131d-bd45-4537-aad5-7596a67b85c1" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "082e26bc-bb26-4332-b2ee-20c5e7267434" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234524Z:082e26bc-bb26-4332-b2ee-20c5e7267434" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "650" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customDomain2251\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/bc82f589-45a4-4ab9-8ac5-fe5af5cf228f/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain2251\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Enabled\",\r\n \"customHttpsProvisioningSubstate\": \"CertificateDeployed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/9b55e5ad-e0d6-4004-a968-f8baba185b1b?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy85YjU1ZTVhZC1lMGQ2LTQwMDQtYTk2OC1mOGJhYmExODViMWI/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:45:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "ee9f9bad-37c1-4f50-95a7-b220d29e9ca8" + ], + "x-ms-client-request-id": [ + "e85126a5-9714-4d29-aa20-421d47caceae" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9506866c-2cdb-479c-b755-d28f9f22b716" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234537Z:9506866c-2cdb-479c-b755-d28f9f22b716" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6157/enableCustomHttps?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjYxNTcvZW5hYmxlQ3VzdG9tSHR0cHM/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"certificateSource\": \"AzureKeyVault\",\r\n \"certificateSourceParameters\": {\r\n \"subscriptionId\": \"3c0124f9-e564-4c42-86f7-fa79457aedc3\",\r\n \"resourceGroupName\": \"byoc\",\r\n \"vaultName\": \"Azure-CDN-BYOC\",\r\n \"secretName\": \"CdnSDKE2EBYOCTest\",\r\n \"secretVersion\": \"526c5d25cc1a46a5bb85ce85ee2b89cc\",\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.KeyVaultCertificateSourceParameters\",\r\n \"updateRule\": \"NoAction\",\r\n \"deleteRule\": \"NoAction\"\r\n },\r\n \"protocolType\": \"ServerNameIndication\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "260c7eee-0b2b-4300-b8ae-58940f3279ef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "508" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:45:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6157?api-version=2017-10-12" + ], + "Retry-After": [ + "120" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "44d02016-4e06-47ce-83d9-51a40f0b140e" + ], + "x-ms-client-request-id": [ + "260c7eee-0b2b-4300-b8ae-58940f3279ef" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86?api-version=2017-10-12" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "083a1837-10dc-4953-9d7e-e39c681e2364" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234540Z:083a1837-10dc-4953-9d7e-e39c681e2364" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "256" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"customHttpsProvisioningSubstate\": \"SubmittingDomainControlValidationRequest\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy85MDQ0NGNlYy1jZWRmLTRiNDgtYjlhMi0wNTA0Yzk1YzhhODY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:47:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d9acdc2f-a880-4f7b-82d0-918a9e8088ee" + ], + "x-ms-client-request-id": [ + "458768c1-e0cb-4c37-ac05-75582905edb9" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0a9dbbd5-f0ce-446e-8f31-b9957e16387c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234740Z:0a9dbbd5-f0ce-446e-8f31-b9957e16387c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy85MDQ0NGNlYy1jZWRmLTRiNDgtYjlhMi0wNTA0Yzk1YzhhODY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:49:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "7725e90a-b349-444a-baaa-65d98dc83d9c" + ], + "x-ms-client-request-id": [ + "78d967f5-83ab-4989-957c-0c69bc1b57bf" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1517e43f-5242-48d3-b234-693d83fe1e97" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T234941Z:1517e43f-5242-48d3-b234-693d83fe1e97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy85MDQ0NGNlYy1jZWRmLTRiNDgtYjlhMi0wNTA0Yzk1YzhhODY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:51:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "b8f47ca5-cb60-45b8-900f-6efd7a1da581" + ], + "x-ms-client-request-id": [ + "8e89aaf5-e7bc-4eb3-be90-7771facecd4e" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7638649c-3ea3-42a9-a1de-a0a5d4f08df1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235141Z:7638649c-3ea3-42a9-a1de-a0a5d4f08df1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy85MDQ0NGNlYy1jZWRmLTRiNDgtYjlhMi0wNTA0Yzk1YzhhODY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:53:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "fa9a059f-0d8a-4bdc-a296-58abf3843950" + ], + "x-ms-client-request-id": [ + "8fdedcf2-efaf-4574-aebd-d5674690a06c" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f499d566-a5c2-4b4b-9423-a3c955543f11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235342Z:f499d566-a5c2-4b4b-9423-a3c955543f11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy85MDQ0NGNlYy1jZWRmLTRiNDgtYjlhMi0wNTA0Yzk1YzhhODY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:55:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "100222ba-529b-4371-acbe-54e71afebb31" + ], + "x-ms-client-request-id": [ + "63387290-7ba3-4c08-a181-7a34e346001f" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "9ba2bddc-efd0-4744-a3fb-a537459094e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235543Z:9ba2bddc-efd0-4744-a3fb-a537459094e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy85MDQ0NGNlYy1jZWRmLTRiNDgtYjlhMi0wNTA0Yzk1YzhhODYvcHJvZmlsZXJlc3VsdHMvcHJvZmlsZTUyNTgvZW5kcG9pbnRyZXN1bHRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21kb21haW5yZXN1bHRzL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:55:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "7f837df0-176f-41e6-b42f-4c6f764b470e" + ], + "x-ms-client-request-id": [ + "4ec71ecd-f648-42c8-9f2d-e092ef203d4e" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "978b2043-b2f6-488a-a67b-00fcd4aaef74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235543Z:978b2043-b2f6-488a-a67b-00fcd4aaef74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "650" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customDomain6157\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/90444cec-cedf-4b48-b9a2-0504c95c8a86/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6157\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.dustydogpetcare.us\",\r\n \"validationData\": null,\r\n \"customHttpsProvisioningState\": \"Enabled\",\r\n \"customHttpsProvisioningSubstate\": \"CertificateDeployed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup531/providers/Microsoft.Cdn/profiles/profile5258/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain2251?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUyNTgvZW5kcG9pbnRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21Eb21haW5zL2N1c3RvbURvbWFpbjIyNTE/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "413f265e-3c9d-459d-9743-23d152eeb3c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:55:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d76a2cb5-24e6-4fde-934f-2f4b98668d0b/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain2251?api-version=2017-10-12" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "a62e0311-56ad-4dc0-bbe1-93e05304bf22" + ], + "x-ms-client-request-id": [ + "413f265e-3c9d-459d-9743-23d152eeb3c5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d76a2cb5-24e6-4fde-934f-2f4b98668d0b?api-version=2017-10-12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "907ee3cf-525f-4a54-9de9-0f9c320c8d16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235546Z:907ee3cf-525f-4a54-9de9-0f9c320c8d16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d76a2cb5-24e6-4fde-934f-2f4b98668d0b?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9kNzZhMmNiNS0yNGU2LTRmZGUtOTM0Zi0yZjRiOTg2NjhkMGI/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:55:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "c91e4a85-1b2c-4861-83e7-fb8987ef9655" + ], + "x-ms-client-request-id": [ + "c17b418c-05f9-4978-8557-cb92f7b91101" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7b0d451f-eb54-45f2-bf3e-dbffc6c8ffb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235556Z:7b0d451f-eb54-45f2-bf3e-dbffc6c8ffb3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d76a2cb5-24e6-4fde-934f-2f4b98668d0b?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9kNzZhMmNiNS0yNGU2LTRmZGUtOTM0Zi0yZjRiOTg2NjhkMGI/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:56:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "02dbc344-991b-4dbf-9c2c-2e171391d2be" + ], + "x-ms-client-request-id": [ + "d56ae3e5-dbcf-45a0-9851-1c4887a39504" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "6f27e844-0d2b-457b-8a86-32f74f1c5f4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235606Z:6f27e844-0d2b-457b-8a86-32f74f1c5f4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/d76a2cb5-24e6-4fde-934f-2f4b98668d0b/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain2251?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9kNzZhMmNiNS0yNGU2LTRmZGUtOTM0Zi0yZjRiOTg2NjhkMGIvcHJvZmlsZXJlc3VsdHMvcHJvZmlsZTUyNTgvZW5kcG9pbnRyZXN1bHRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21kb21haW5yZXN1bHRzL2N1c3RvbURvbWFpbjIyNTE/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:56:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "84033da1-7c41-4545-9780-9dfef4f34ab2" + ], + "x-ms-client-request-id": [ + "06a7c98b-d6ef-48c8-9ec3-78674c4131c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "765199c6-8cc2-4eed-950e-8a79555e8e9f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235607Z:765199c6-8cc2-4eed-950e-8a79555e8e9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/ca0d1e45-d802-4ac7-8483-f13e929da0e7?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9jYTBkMWU0NS1kODAyLTRhYzctODQ4My1mMTNlOTI5ZGEwZTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 Mar 2019 23:56:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "2373e009-cd76-4d18-8086-96c73500cdb9" + ], + "x-ms-client-request-id": [ + "f2a69a60-c35c-47dd-8830-8406986e4971" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "a72f512d-eacf-40ab-b3d0-66d602e1e322" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190311T235619Z:a72f512d-eacf-40ab-b3d0-66d602e1e322" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" ], - "x-ms-correlation-request-id": [ - "18ae3162-7c26-436a-b5ab-2573e7fca5b4" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "x-ms-routing-request-id": [ - "WESTUS2:20180213T202719Z:18ae3162-7c26-436a-b5ab-2573e7fca5b4" + "Expires": [ + "-1" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/39a89f4c-c390-4077-9217-b532f83c820c?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzlhODlmNGMtYzM5MC00MDc3LTkyMTctYjUzMmY4M2M4MjBjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/ca0d1e45-d802-4ac7-8483-f13e929da0e7?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9jYTBkMWU0NS1kODAyLTRhYzctODQ4My1mMTNlOTI5ZGEwZTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:29 GMT" + "Mon, 11 Mar 2019 23:56:28 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "afc5a374-71f7-40f4-af6a-8feb346216d7" + "bb4fd5e9-39ff-43ab-a823-4769cdd3c946" ], "x-ms-client-request-id": [ - "56e8e14f-8e6b-4367-9b1b-d8788f4c4c91" + "93c88bff-8140-45cf-a39b-5c0877f85366" ], "OData-Version": [ "4.0" @@ -2134,62 +4137,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11992" ], "x-ms-correlation-request-id": [ - "95223985-9a7b-4013-a7f5-80e15df05fc7" + "b0954057-43ef-46c4-aee9-91bada2058ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202730Z:95223985-9a7b-4013-a7f5-80e15df05fc7" + "WESTUS2:20190311T235629Z:b0954057-43ef-46c4-aee9-91bada2058ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387/providers/Microsoft.Cdn/operationresults/39a89f4c-c390-4077-9217-b532f83c820c?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzlhODlmNGMtYzM5MC00MDc3LTkyMTctYjUzMmY4M2M4MjBjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531/providers/Microsoft.Cdn/operationresults/ca0d1e45-d802-4ac7-8483-f13e929da0e7/profileresults/profile5258/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6157?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9jYTBkMWU0NS1kODAyLTRhYzctODQ4My1mMTNlOTI5ZGEwZTcvcHJvZmlsZXJlc3VsdHMvcHJvZmlsZTUyNTgvZW5kcG9pbnRyZXN1bHRzL2VuZHBvaW50LWYzNzU3ZDJhM2UxMC9jdXN0b21kb21haW5yZXN1bHRzL2N1c3RvbURvbWFpbjYxNTc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:29 GMT" + "Mon, 11 Mar 2019 23:56:29 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "afc5a374-71f7-40f4-af6a-8feb346216d7" + "aa239877-6596-4bab-9838-bd6a22d31032" ], "x-ms-client-request-id": [ - "56e8e14f-8e6b-4367-9b1b-d8788f4c4c91" - ], - "OData-Version": [ - "4.0" + "50992a32-1181-4860-8d5a-a5181619b802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2201,699 +4203,780 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11991" ], "x-ms-correlation-request-id": [ - "95223985-9a7b-4013-a7f5-80e15df05fc7" + "18955517-ef8e-4a7e-827a-99f35ee689f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202730Z:95223985-9a7b-4013-a7f5-80e15df05fc7" + "WESTUS2:20190311T235630Z:18955517-ef8e-4a7e-827a-99f35ee689f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup3387?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMzg3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup531?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5517d895-fe14-439d-88ea-91f9d4b643fb" + "f93909f6-7775-411d-b718-613473ecb3ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:30 GMT" + "Mon, 11 Mar 2019 23:56:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "4ef167fd-c810-4b22-9186-1a73d614e89b" + "f73ccf7d-ab16-4f86-b521-d98def769ea3" ], "x-ms-correlation-request-id": [ - "4ef167fd-c810-4b22-9186-1a73d614e89b" + "f73ccf7d-ab16-4f86-b521-d98def769ea3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202731Z:4ef167fd-c810-4b22-9186-1a73d614e89b" + "WESTUS2:20190311T235632Z:f73ccf7d-ab16-4f86-b521-d98def769ea3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:27:46 GMT" + "Mon, 11 Mar 2019 23:56:46 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "5a5180a5-68cf-446f-8834-5cc285afd572" + "57390d7a-666b-42dc-a39e-82335eb20d64" ], "x-ms-correlation-request-id": [ - "5a5180a5-68cf-446f-8834-5cc285afd572" + "57390d7a-666b-42dc-a39e-82335eb20d64" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202746Z:5a5180a5-68cf-446f-8834-5cc285afd572" + "WESTUS2:20190311T235647Z:57390d7a-666b-42dc-a39e-82335eb20d64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:28:01 GMT" + "Mon, 11 Mar 2019 23:57:01 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "27b86839-273a-431f-a81e-f41beccb18ea" + "9916a73b-6a79-4efa-924c-b6d51d49e9d5" ], "x-ms-correlation-request-id": [ - "27b86839-273a-431f-a81e-f41beccb18ea" + "9916a73b-6a79-4efa-924c-b6d51d49e9d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202801Z:27b86839-273a-431f-a81e-f41beccb18ea" + "WESTUS2:20190311T235702Z:9916a73b-6a79-4efa-924c-b6d51d49e9d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:28:15 GMT" + "Mon, 11 Mar 2019 23:57:16 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-request-id": [ - "1b389c89-e3b8-4f99-a500-a29a98e624f1" + "a4d644f5-738e-4b1e-b6dd-fc4df7abc60f" ], "x-ms-correlation-request-id": [ - "1b389c89-e3b8-4f99-a500-a29a98e624f1" + "a4d644f5-738e-4b1e-b6dd-fc4df7abc60f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202816Z:1b389c89-e3b8-4f99-a500-a29a98e624f1" + "WESTUS2:20190311T235717Z:a4d644f5-738e-4b1e-b6dd-fc4df7abc60f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:28:31 GMT" + "Mon, 11 Mar 2019 23:57:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11996" ], "x-ms-request-id": [ - "7309e664-92f7-407f-ac00-862c850a38a9" + "3181bf86-53bd-405b-bab1-04de0d70efb2" ], "x-ms-correlation-request-id": [ - "7309e664-92f7-407f-ac00-862c850a38a9" + "3181bf86-53bd-405b-bab1-04de0d70efb2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202831Z:7309e664-92f7-407f-ac00-862c850a38a9" + "WESTUS2:20190311T235732Z:3181bf86-53bd-405b-bab1-04de0d70efb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:28:46 GMT" + "Mon, 11 Mar 2019 23:57:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11995" ], "x-ms-request-id": [ - "76cc736c-ba7a-44dc-81b7-2177b0640b3e" + "6197f5d4-db9e-4c88-aea6-b7d61788df82" ], "x-ms-correlation-request-id": [ - "76cc736c-ba7a-44dc-81b7-2177b0640b3e" + "6197f5d4-db9e-4c88-aea6-b7d61788df82" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202846Z:76cc736c-ba7a-44dc-81b7-2177b0640b3e" + "WESTUS2:20190311T235747Z:6197f5d4-db9e-4c88-aea6-b7d61788df82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:29:01 GMT" + "Mon, 11 Mar 2019 23:58:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11994" ], "x-ms-request-id": [ - "6f7a5b71-831b-4fa3-93ca-883ae171e37c" + "dbfd0674-e848-4f0d-9af2-8bcff45b7723" ], "x-ms-correlation-request-id": [ - "6f7a5b71-831b-4fa3-93ca-883ae171e37c" + "dbfd0674-e848-4f0d-9af2-8bcff45b7723" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202901Z:6f7a5b71-831b-4fa3-93ca-883ae171e37c" + "WESTUS2:20190311T235802Z:dbfd0674-e848-4f0d-9af2-8bcff45b7723" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:29:16 GMT" + "Mon, 11 Mar 2019 23:58:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11993" ], "x-ms-request-id": [ - "ebf6c173-1e49-4f2e-87f9-603d7a65fafb" + "ac900542-6ad3-41c7-82da-32e2a76fee70" ], "x-ms-correlation-request-id": [ - "ebf6c173-1e49-4f2e-87f9-603d7a65fafb" + "ac900542-6ad3-41c7-82da-32e2a76fee70" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202917Z:ebf6c173-1e49-4f2e-87f9-603d7a65fafb" + "WESTUS2:20190311T235817Z:ac900542-6ad3-41c7-82da-32e2a76fee70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:29:31 GMT" + "Mon, 11 Mar 2019 23:58:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11992" ], "x-ms-request-id": [ - "f327e6e6-a558-40e6-a0b4-b746c6b65f17" + "21e6eadc-ba5c-41a5-9ac1-c35855826b8e" ], "x-ms-correlation-request-id": [ - "f327e6e6-a558-40e6-a0b4-b746c6b65f17" + "21e6eadc-ba5c-41a5-9ac1-c35855826b8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202932Z:f327e6e6-a558-40e6-a0b4-b746c6b65f17" + "WESTUS2:20190311T235832Z:21e6eadc-ba5c-41a5-9ac1-c35855826b8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:29:46 GMT" + "Mon, 11 Mar 2019 23:58:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11991" ], "x-ms-request-id": [ - "ad847823-c86c-4a81-a963-cc0ca6eaecb2" + "3f1e810d-4bb0-473c-bfe0-6faa6c6a84c6" ], "x-ms-correlation-request-id": [ - "ad847823-c86c-4a81-a963-cc0ca6eaecb2" + "3f1e810d-4bb0-473c-bfe0-6faa6c6a84c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T202947Z:ad847823-c86c-4a81-a963-cc0ca6eaecb2" + "WESTUS2:20190311T235847Z:3f1e810d-4bb0-473c-bfe0-6faa6c6a84c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:30:01 GMT" + "Mon, 11 Mar 2019 23:59:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11990" ], "x-ms-request-id": [ - "f2bb1e05-a4d1-48db-ace6-c5bc4acc7a59" + "544fc6d2-6354-41fc-bf08-8c3f02d10144" ], "x-ms-correlation-request-id": [ - "f2bb1e05-a4d1-48db-ace6-c5bc4acc7a59" + "544fc6d2-6354-41fc-bf08-8c3f02d10144" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T203002Z:f2bb1e05-a4d1-48db-ace6-c5bc4acc7a59" + "WESTUS2:20190311T235902Z:544fc6d2-6354-41fc-bf08-8c3f02d10144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:30:17 GMT" + "Mon, 11 Mar 2019 23:59:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11989" ], "x-ms-request-id": [ - "56a745af-ad3a-40b2-a25f-d2a53b9a4dff" + "5004736a-b99a-4812-b580-29b18a490311" ], "x-ms-correlation-request-id": [ - "56a745af-ad3a-40b2-a25f-d2a53b9a4dff" + "5004736a-b99a-4812-b580-29b18a490311" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T203017Z:56a745af-ad3a-40b2-a25f-d2a53b9a4dff" + "WESTUS2:20190311T235918Z:5004736a-b99a-4812-b580-29b18a490311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzM4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNek00TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVE14TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 20:30:17 GMT" + "Mon, 11 Mar 2019 23:59:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11988" ], "x-ms-request-id": [ - "56a745af-ad3a-40b2-a25f-d2a53b9a4dff" + "03bc3345-69c5-4a91-8cbe-3ecb6706ef6a" ], "x-ms-correlation-request-id": [ - "56a745af-ad3a-40b2-a25f-d2a53b9a4dff" + "03bc3345-69c5-4a91-8cbe-3ecb6706ef6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T203017Z:56a745af-ad3a-40b2-a25f-d2a53b9a4dff" + "WESTUS2:20190311T235918Z:03bc3345-69c5-4a91-8cbe-3ecb6706ef6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup3387" + "cdnResourceGroup531" ], "CustomDomainCRUDTest": [ - "profile7118", - "customDomain6021", - "customDomain853" + "profile5258", + "customDomain2251", + "customDomain6157" ] }, "Variables": { - "SubscriptionId": "e2ee545b-783f-4634-a277-e35f55c90660" + "SubscriptionId": "3c0124f9-e564-4c42-86f7-fa79457aedc3" } } \ No newline at end of file diff --git a/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.ProfileTests/ProfileCheckUsageTest.json b/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.ProfileTests/ProfileCheckUsageTest.json index b66e6361e24e9..927827bf73463 100644 --- a/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.ProfileTests/ProfileCheckUsageTest.json +++ b/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.ProfileTests/ProfileCheckUsageTest.json @@ -1,53 +1,42 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/providers/Microsoft.Cdn/checkResourceUsage?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/providers/Microsoft.Cdn/checkResourceUsage?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bb68bad-21fa-42e8-905a-cd1ceeab6db1" + "12cdad7a-ef0e-463b-8d15-3c0f892e4a1d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"profile\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 0,\r\n \"limit\": 25\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:40:47 GMT" + "Wed, 13 Mar 2019 20:45:37 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "d3ab934c-b4dc-4e2f-984f-274f7eba237f" + "dc5c1ea5-7d89-4364-868a-33b1d4a4f953" ], "x-ms-client-request-id": [ - "7bb68bad-21fa-42e8-905a-cd1ceeab6db1" + "12cdad7a-ef0e-463b-8d15-3c0f892e4a1d" ], "OData-Version": [ "4.0" @@ -65,62 +54,64 @@ "1199" ], "x-ms-correlation-request-id": [ - "12019062-b3b8-4eb6-95a3-b97797a7bf49" + "552bdbe3-a977-43fc-a38c-a1d824a9f6fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234048Z:12019062-b3b8-4eb6-95a3-b97797a7bf49" + "WESTUS2:20190313T204538Z:552bdbe3-a977-43fc-a38c-a1d824a9f6fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "113" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"profile\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 12,\r\n \"limit\": 200\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/providers/Microsoft.Cdn/checkResourceUsage?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/providers/Microsoft.Cdn/checkResourceUsage?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d0154fd-9d10-4ae7-8cc5-b73155f821a0" + "6df957bd-62df-4465-860f-9938a991cd29" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"profile\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 1,\r\n \"limit\": 25\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:20 GMT" + "Wed, 13 Mar 2019 20:46:14 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "8da44d24-a7c7-4831-bf19-ecc9296e9b31" + "0a326334-b84a-4275-a002-95023d092520" ], "x-ms-client-request-id": [ - "4d0154fd-9d10-4ae7-8cc5-b73155f821a0" + "6df957bd-62df-4465-860f-9938a991cd29" ], "OData-Version": [ "4.0" @@ -135,56 +126,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "3d55c4be-048c-4ccc-88ff-2f68aac48a0a" + "73e5ea3a-a427-4475-a2a4-6928bd930dd4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234121Z:3d55c4be-048c-4ccc-88ff-2f68aac48a0a" + "WESTUS2:20190313T204614Z:73e5ea3a-a427-4475-a2a4-6928bd930dd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "113" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"profile\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 13,\r\n \"limit\": 200\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "2baf4517-e6f6-48a4-97f2-24293c3e3d5c" + "0cabfb27-fc91-4931-877f-449bc954e50c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup9500\",\r\n \"name\": \"cdnResourceGroup9500\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "193" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:40:47 GMT" + "Wed, 13 Mar 2019 20:45:39 GMT" ], "Pragma": [ "no-cache" @@ -193,59 +189,64 @@ "1199" ], "x-ms-request-id": [ - "e8a6d222-5333-4468-b38b-c28866c1bccc" + "dacb800d-a0d8-42b2-91b3-36ee703e03c8" ], "x-ms-correlation-request-id": [ - "e8a6d222-5333-4468-b38b-c28866c1bccc" + "dacb800d-a0d8-42b2-91b3-36ee703e03c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234048Z:e8a6d222-5333-4468-b38b-c28866c1bccc" + "WESTUS2:20190313T204539Z:dacb800d-a0d8-42b2-91b3-36ee703e03c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6561\",\r\n \"name\": \"cdnResourceGroup6561\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNzY3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "142" - ], "x-ms-client-request-id": [ - "3e42b709-a38b-45c6-9db4-386593f3fb8a" + "1e1aaa53-9e7d-4e66-a3c4-f474c8aa1484" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"profile1767\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "398" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" + "application/json; charset=utf-8" ], + "Content-Length": [ + "142" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:40:49 GMT" + "Wed, 13 Mar 2019 20:45:41 GMT" ], "Pragma": [ "no-cache" @@ -257,13 +258,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "1334319f-6e18-47f4-8c29-a83103b5adc2" + "fb1470bd-ac9d-4ba6-a568-cdbd3fae03cb" ], "x-ms-client-request-id": [ - "3e42b709-a38b-45c6-9db4-386593f3fb8a" + "1e1aaa53-9e7d-4e66-a3c4-f474c8aa1484" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/operationresults/9ebacc1d-436e-4dc5-9ddc-1c53a892c957?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/operationresults/be8f076d-c1fd-4ec6-b7a1-2ff45f03fa6d?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -278,59 +279,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "52a7492b-f6c9-413a-883d-86dfcc046b34" + "0c14c199-ef23-47fd-9f1e-704f88b82cbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234050Z:52a7492b-f6c9-413a-883d-86dfcc046b34" + "WESTUS2:20190313T204542Z:0c14c199-ef23-47fd-9f1e-704f88b82cbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "396" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile126\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/operationresults/9ebacc1d-436e-4dc5-9ddc-1c53a892c957?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOWViYWNjMWQtNDM2ZS00ZGM1LTlkZGMtMWM1M2E4OTJjOTU3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/operationresults/be8f076d-c1fd-4ec6-b7a1-2ff45f03fa6d?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU4ZjA3NmQtYzFmZC00ZWM2LWI3YTEtMmZmNDVmMDNmYTZkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:40:59 GMT" + "Wed, 13 Mar 2019 20:45:51 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "d3f70be8-7f20-4582-8a79-10c6156d2635" + "c0a5bbbc-d7ff-4346-b3be-413712538d10" ], "x-ms-client-request-id": [ - "41291b68-c44a-4c0b-8617-6ce4f2c717a5" + "a99bb613-d14a-448c-8b5f-d649b5db32b5" ], "OData-Version": [ "4.0" @@ -345,59 +348,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11999" ], "x-ms-correlation-request-id": [ - "3025d689-5718-452d-bead-53e40442a88c" + "9d1c2e25-20ac-4c6b-8152-91e6b21e3b44" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234100Z:3025d689-5718-452d-bead-53e40442a88c" + "WESTUS2:20190313T204552Z:9d1c2e25-20ac-4c6b-8152-91e6b21e3b44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/operationresults/9ebacc1d-436e-4dc5-9ddc-1c53a892c957?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOWViYWNjMWQtNDM2ZS00ZGM1LTlkZGMtMWM1M2E4OTJjOTU3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/operationresults/be8f076d-c1fd-4ec6-b7a1-2ff45f03fa6d?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU4ZjA3NmQtYzFmZC00ZWM2LWI3YTEtMmZmNDVmMDNmYTZkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:10 GMT" + "Wed, 13 Mar 2019 20:46:03 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "b38cb065-504a-4961-8d6e-6e54a0e08043" + "9e294d27-5379-4e44-90e3-cdf47da8b976" ], "x-ms-client-request-id": [ - "d43abf32-89a0-4d66-9317-58eddedd3881" + "254be322-7a4e-4d49-98a6-eda8970e4d2c" ], "OData-Version": [ "4.0" @@ -412,59 +417,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11998" ], "x-ms-correlation-request-id": [ - "57f3c3c4-a03f-4866-bd07-a77d42ff6789" + "fe266645-7a51-45f2-a894-ed32df6c4689" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234110Z:57f3c3c4-a03f-4866-bd07-a77d42ff6789" + "WESTUS2:20190313T204603Z:fe266645-7a51-45f2-a894-ed32df6c4689" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/operationresults/9ebacc1d-436e-4dc5-9ddc-1c53a892c957?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOWViYWNjMWQtNDM2ZS00ZGM1LTlkZGMtMWM1M2E4OTJjOTU3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/operationresults/be8f076d-c1fd-4ec6-b7a1-2ff45f03fa6d?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU4ZjA3NmQtYzFmZC00ZWM2LWI3YTEtMmZmNDVmMDNmYTZkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:20 GMT" + "Wed, 13 Mar 2019 20:46:13 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "6c42bb15-89f4-4057-8e74-2492819aef23" + "4577f8d5-63b8-4778-b1b8-d34cab2d8a2d" ], "x-ms-client-request-id": [ - "1e84c92a-3e20-4fa5-b917-e1abf0583447" + "df14352f-7a71-4542-8a5a-0434c637fb0f" ], "OData-Version": [ "4.0" @@ -479,59 +486,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11997" ], "x-ms-correlation-request-id": [ - "f37df473-0861-4895-9386-23a20c0a1989" + "4cd20f38-850c-41c9-a753-7a5956dcbc91" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234121Z:f37df473-0861-4895-9386-23a20c0a1989" + "WESTUS2:20190313T204613Z:4cd20f38-850c-41c9-a753-7a5956dcbc91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNzY3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"profile1767\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:20 GMT" + "Wed, 13 Mar 2019 20:46:13 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "a06bc1e5-f25c-4db4-90c4-64cff457a794" + "91449d3f-88f6-4795-b0c2-bf89603e6bdb" ], "x-ms-client-request-id": [ - "ffc18dfd-6ab1-4d03-8164-b09032d496e4" + "7dd860fa-c3f0-4c0b-b2f4-c09929d12be8" ], "OData-Version": [ "4.0" @@ -546,65 +555,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11996" ], "x-ms-correlation-request-id": [ - "0f638842-3cf0-4175-9f2f-9165ac189f5f" + "d3853371-9e79-4e8d-8e1f-8c12ee9fa327" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234121Z:0f638842-3cf0-4175-9f2f-9165ac189f5f" + "WESTUS2:20190313T204613Z:d3853371-9e79-4e8d-8e1f-8c12ee9fa327" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "395" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile126\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767/checkResourceUsage?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNzY3L2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126/checkResourceUsage?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjYvY2hlY2tSZXNvdXJjZVVzYWdlP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33de0c98-67ac-4e47-a80b-4d8963574484" + "329653d3-4f77-40fb-a653-ef35d5c5fd04" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"endpoint\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 0,\r\n \"limit\": 10\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:21 GMT" + "Wed, 13 Mar 2019 20:46:15 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "8bc7597b-38a2-4c3f-859d-168923bcf8a0" + "b434d2ef-2ddc-4a18-9fbc-229817c909a0" ], "x-ms-client-request-id": [ - "33de0c98-67ac-4e47-a80b-4d8963574484" + "329653d3-4f77-40fb-a653-ef35d5c5fd04" ], "OData-Version": [ "4.0" @@ -619,65 +630,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "6e07fa1b-5606-4ad4-9882-d39850ba5718" + "afc9d729-71df-48dd-b08a-c6a55fa242d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234122Z:6e07fa1b-5606-4ad4-9882-d39850ba5718" + "WESTUS2:20190313T204615Z:afc9d729-71df-48dd-b08a-c6a55fa242d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "112" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"endpoint\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 0,\r\n \"limit\": 25\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767/checkResourceUsage?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNzY3L2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126/checkResourceUsage?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjYvY2hlY2tSZXNvdXJjZVVzYWdlP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61cedc17-fc79-408f-92d0-af778cd96f0e" + "7dae4798-cdc1-452c-9ae4-5d43124a9a41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"endpoint\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 1,\r\n \"limit\": 10\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:34 GMT" + "Wed, 13 Mar 2019 20:46:39 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "02af2ca8-f596-42be-b456-ab07802db0f8" + "2ca36bc1-2468-42ed-a64d-ff1709842692" ], "x-ms-client-request-id": [ - "61cedc17-fc79-408f-92d0-af778cd96f0e" + "7dae4798-cdc1-452c-9ae4-5d43124a9a41" ], "OData-Version": [ "4.0" @@ -692,56 +705,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "4ab84a09-8a17-4951-b228-a3003e155718" + "cb5e7a34-28e4-49da-90c8-4c87c5965684" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234134Z:4ab84a09-8a17-4951-b228-a3003e155718" + "WESTUS2:20190313T204640Z:cb5e7a34-28e4-49da-90c8-4c87c5965684" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "112" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"endpoint\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 1,\r\n \"limit\": 25\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767/endpoints/endpoint6196?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNzY3L2VuZHBvaW50cy9lbmRwb2ludDYxOTY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126/endpoints/endpoint1709?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjYvZW5kcG9pbnRzL2VuZHBvaW50MTcwOT9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "258" - ], "x-ms-client-request-id": [ - "3b2aa27d-11f7-4eb0-ba30-6563d2addcf9" + "02422c2d-4013-4728-89b1-6b3042695bbb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"endpoint6196\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767/endpoints/endpoint6196\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6196.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "890" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" + "application/json; charset=utf-8" ], + "Content-Length": [ + "258" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:22 GMT" + "Wed, 13 Mar 2019 20:46:18 GMT" ], "Pragma": [ "no-cache" @@ -753,13 +771,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "d13a15d6-ba36-4b97-8324-bcd8ca4c9621" + "a813c672-970c-4811-9719-6902bff239d7" ], "x-ms-client-request-id": [ - "3b2aa27d-11f7-4eb0-ba30-6563d2addcf9" + "02422c2d-4013-4728-89b1-6b3042695bbb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/operationresults/99bb72de-4d1a-4233-9700-3dc65ff835b5?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/operationresults/14211d9c-1606-4711-a283-a98a90956bcd?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -774,59 +792,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "191856c7-6b27-4f48-9225-75f6bc2f86b3" + "d794ef03-3c85-497e-a67e-8be0c338ef7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234123Z:191856c7-6b27-4f48-9225-75f6bc2f86b3" + "WESTUS2:20190313T204618Z:d794ef03-3c85-497e-a67e-8be0c338ef7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "889" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"endpoint1709\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126/endpoints/endpoint1709\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1709.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/operationresults/99bb72de-4d1a-4233-9700-3dc65ff835b5?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTliYjcyZGUtNGQxYS00MjMzLTk3MDAtM2RjNjVmZjgzNWI1P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/operationresults/14211d9c-1606-4711-a283-a98a90956bcd?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTQyMTFkOWMtMTYwNi00NzExLWEyODMtYTk4YTkwOTU2YmNkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:34 GMT" + "Wed, 13 Mar 2019 20:46:28 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "91f40c09-b362-45e9-88a2-99856f8852d8" + "c92334b4-f30c-4f03-9654-47088283f119" ], "x-ms-client-request-id": [ - "5cbaec66-da01-4229-9394-6ffe599cf5b3" + "d1265c3e-12a9-4a6c-a204-7066443339dd" ], "OData-Version": [ "4.0" @@ -841,59 +861,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11995" ], "x-ms-correlation-request-id": [ - "a6dd785f-09c2-4ecf-8097-a0ea5bfc9970" + "e77649fd-e1dc-4dad-bce8-60f2581f753d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234134Z:a6dd785f-09c2-4ecf-8097-a0ea5bfc9970" + "WESTUS2:20190313T204628Z:e77649fd-e1dc-4dad-bce8-60f2581f753d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourceGroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767/endpoints/endpoint6196?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNzY3L2VuZHBvaW50cy9lbmRwb2ludDYxOTY/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/operationresults/14211d9c-1606-4711-a283-a98a90956bcd?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTQyMTFkOWMtMTYwNi00NzExLWEyODMtYTk4YTkwOTU2YmNkP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint6196\",\r\n \"id\": \"/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500/providers/Microsoft.Cdn/profiles/profile1767/endpoints/endpoint6196\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6196.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:34 GMT" + "Wed, 13 Mar 2019 20:46:38 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "c206ea4a-62f3-47be-aaa7-2e91a76768d6" + "3ab81e3a-a010-400e-8881-0f8ec1652f3e" ], "x-ms-client-request-id": [ - "068f5f32-e225-435d-bd11-402ddac79c94" + "7cdb6521-1244-4fe2-8766-fbf6733aab3f" ], "OData-Version": [ "4.0" @@ -908,698 +930,788 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11994" ], "x-ms-correlation-request-id": [ - "e6d9862a-94f1-4a0d-9f05-ff4447c436de" + "ab0f46b8-c7c5-47be-a3b9-1c18fa9e33f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234134Z:e6d9862a-94f1-4a0d-9f05-ff4447c436de" + "WESTUS2:20190313T204638Z:ab0f46b8-c7c5-47be-a3b9-1c18fa9e33f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/resourcegroups/cdnResourceGroup9500?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTAwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126/endpoints/endpoint1709?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjYvZW5kcG9pbnRzL2VuZHBvaW50MTcwOT9hcGktdmVyc2lvbj0yMDE3LTEwLTEy", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3785dc12-02bc-41e7-88e0-16c90470cc30" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:34 GMT" + "Wed, 13 Mar 2019 20:46:39 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "Server": [ + "Microsoft-IIS/8.5" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "4bde5dc0-094f-4e11-a7e0-c2e012946267" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-client-request-id": [ + "f65c6bfe-2aa3-4544-9817-caf7605c691f" ], - "x-ms-request-id": [ - "1984aee8-0532-443c-902d-77bc61291d69" + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "x-ms-correlation-request-id": [ - "1984aee8-0532-443c-902d-77bc61291d69" + "5d29d53a-7d68-4d39-99de-a22f26cab0d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234135Z:1984aee8-0532-443c-902d-77bc61291d69" + "WESTUS2:20190313T204639Z:5d29d53a-7d68-4d39-99de-a22f26cab0d7" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "889" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"endpoint1709\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561/providers/Microsoft.Cdn/profiles/profile126/endpoints/endpoint1709\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1709.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6561?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTYxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fc43247c-d09e-4b62-b512-98e297d5e1e5" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:41:49 GMT" + "Wed, 13 Mar 2019 20:46:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-request-id": [ - "deb046c9-143a-4d01-b1bd-7ef404fbb4ab" + "e46b9483-49a6-4fe5-af2c-b5262b9a82c4" ], "x-ms-correlation-request-id": [ - "deb046c9-143a-4d01-b1bd-7ef404fbb4ab" + "e46b9483-49a6-4fe5-af2c-b5262b9a82c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234150Z:deb046c9-143a-4d01-b1bd-7ef404fbb4ab" + "WESTUS2:20190313T204640Z:e46b9483-49a6-4fe5-af2c-b5262b9a82c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:42:05 GMT" + "Wed, 13 Mar 2019 20:46:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11999" ], "x-ms-request-id": [ - "7cf057d9-7cbc-436d-9b90-bdbf22519b28" + "2f8d486a-7997-419d-9680-4b0e7d8939f6" ], "x-ms-correlation-request-id": [ - "7cf057d9-7cbc-436d-9b90-bdbf22519b28" + "2f8d486a-7997-419d-9680-4b0e7d8939f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234205Z:7cf057d9-7cbc-436d-9b90-bdbf22519b28" + "WESTUS2:20190313T204656Z:2f8d486a-7997-419d-9680-4b0e7d8939f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:42:20 GMT" + "Wed, 13 Mar 2019 20:47:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11998" ], "x-ms-request-id": [ - "94b030a0-5b75-4e59-940f-27939f0554a0" + "4b0f1077-2e9a-40b7-bc5f-ba4392699a2e" ], "x-ms-correlation-request-id": [ - "94b030a0-5b75-4e59-940f-27939f0554a0" + "4b0f1077-2e9a-40b7-bc5f-ba4392699a2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234220Z:94b030a0-5b75-4e59-940f-27939f0554a0" + "WESTUS2:20190313T204711Z:4b0f1077-2e9a-40b7-bc5f-ba4392699a2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:42:35 GMT" + "Wed, 13 Mar 2019 20:47:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11997" ], "x-ms-request-id": [ - "a6ab112d-0fff-4e05-8858-d2be982331ff" + "8d06dd22-1827-4b43-9635-65c9934c2983" ], "x-ms-correlation-request-id": [ - "a6ab112d-0fff-4e05-8858-d2be982331ff" + "8d06dd22-1827-4b43-9635-65c9934c2983" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234235Z:a6ab112d-0fff-4e05-8858-d2be982331ff" + "WESTUS2:20190313T204726Z:8d06dd22-1827-4b43-9635-65c9934c2983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:42:50 GMT" + "Wed, 13 Mar 2019 20:47:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11996" ], "x-ms-request-id": [ - "8f3fea91-2d02-4043-a60a-d95018d67a79" + "cd47e144-22d0-4489-be33-0d7ced2e7c62" ], "x-ms-correlation-request-id": [ - "8f3fea91-2d02-4043-a60a-d95018d67a79" + "cd47e144-22d0-4489-be33-0d7ced2e7c62" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234250Z:8f3fea91-2d02-4043-a60a-d95018d67a79" + "WESTUS2:20190313T204741Z:cd47e144-22d0-4489-be33-0d7ced2e7c62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:43:05 GMT" + "Wed, 13 Mar 2019 20:47:55 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11995" ], "x-ms-request-id": [ - "477ce30a-0f7d-4be0-8991-e619bd8a6510" + "91e70911-9b8b-4dd8-b19a-d84e44a96a15" ], "x-ms-correlation-request-id": [ - "477ce30a-0f7d-4be0-8991-e619bd8a6510" + "91e70911-9b8b-4dd8-b19a-d84e44a96a15" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234305Z:477ce30a-0f7d-4be0-8991-e619bd8a6510" + "WESTUS2:20190313T204756Z:91e70911-9b8b-4dd8-b19a-d84e44a96a15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:43:20 GMT" + "Wed, 13 Mar 2019 20:48:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11994" ], "x-ms-request-id": [ - "644d3b25-3368-4294-b014-503982d82926" + "1ba0c081-3dca-4aea-888f-93868f8d233d" ], "x-ms-correlation-request-id": [ - "644d3b25-3368-4294-b014-503982d82926" + "1ba0c081-3dca-4aea-888f-93868f8d233d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234320Z:644d3b25-3368-4294-b014-503982d82926" + "WESTUS2:20190313T204811Z:1ba0c081-3dca-4aea-888f-93868f8d233d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:43:34 GMT" + "Wed, 13 Mar 2019 20:48:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11993" ], "x-ms-request-id": [ - "02ef5e55-ab29-4ae4-81ff-723a394f54c2" + "43d27af8-cfa1-4461-a428-c3a88f9ef83d" ], "x-ms-correlation-request-id": [ - "02ef5e55-ab29-4ae4-81ff-723a394f54c2" + "43d27af8-cfa1-4461-a428-c3a88f9ef83d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234335Z:02ef5e55-ab29-4ae4-81ff-723a394f54c2" + "WESTUS2:20190313T204826Z:43d27af8-cfa1-4461-a428-c3a88f9ef83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:43:50 GMT" + "Wed, 13 Mar 2019 20:48:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11992" ], "x-ms-request-id": [ - "6dc83ca5-bfd8-453d-b4b9-fd42808d5036" + "7eb6a257-2e6d-4a37-8f65-f3a518488fb8" ], "x-ms-correlation-request-id": [ - "6dc83ca5-bfd8-453d-b4b9-fd42808d5036" + "7eb6a257-2e6d-4a37-8f65-f3a518488fb8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234350Z:6dc83ca5-bfd8-453d-b4b9-fd42808d5036" + "WESTUS2:20190313T204841Z:7eb6a257-2e6d-4a37-8f65-f3a518488fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:44:05 GMT" + "Wed, 13 Mar 2019 20:48:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11991" ], "x-ms-request-id": [ - "6cc6e769-fb53-4788-a5c2-3e6be93ccc97" + "b4038836-458c-48bc-8162-9f40d21a15a6" ], "x-ms-correlation-request-id": [ - "6cc6e769-fb53-4788-a5c2-3e6be93ccc97" + "b4038836-458c-48bc-8162-9f40d21a15a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234406Z:6cc6e769-fb53-4788-a5c2-3e6be93ccc97" + "WESTUS2:20190313T204856Z:b4038836-458c-48bc-8162-9f40d21a15a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:44:20 GMT" + "Wed, 13 Mar 2019 20:49:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11990" ], "x-ms-request-id": [ - "40eb246e-98ac-4439-bb54-e01f53b029e2" + "19c3dda7-7948-4442-8dc2-825d559185d8" ], "x-ms-correlation-request-id": [ - "40eb246e-98ac-4439-bb54-e01f53b029e2" + "19c3dda7-7948-4442-8dc2-825d559185d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234421Z:40eb246e-98ac-4439-bb54-e01f53b029e2" + "WESTUS2:20190313T204911Z:19c3dda7-7948-4442-8dc2-825d559185d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e2ee545b-783f-4634-a277-e35f55c90660/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJlZTU0NWItNzgzZi00NjM0LWEyNzctZTM1ZjU1YzkwNjYwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjU2MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalUyTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 13 Feb 2018 23:44:20 GMT" + "Wed, 13 Mar 2019 20:49:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11989" ], "x-ms-request-id": [ - "40eb246e-98ac-4439-bb54-e01f53b029e2" + "cdfac0ba-8b81-4635-a5a7-bbf9f9560c29" ], "x-ms-correlation-request-id": [ - "40eb246e-98ac-4439-bb54-e01f53b029e2" + "cdfac0ba-8b81-4635-a5a7-bbf9f9560c29" ], "x-ms-routing-request-id": [ - "WESTUS2:20180213T234421Z:40eb246e-98ac-4439-bb54-e01f53b029e2" + "WESTUS2:20190313T204911Z:cdfac0ba-8b81-4635-a5a7-bbf9f9560c29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup9500" + "cdnResourceGroup6561" ], "ProfileCheckUsageTest": [ - "profile1767", - "endpoint6196" + "profile126", + "endpoint1709" ] }, "Variables": { - "SubscriptionId": "e2ee545b-783f-4634-a277-e35f55c90660" + "SubscriptionId": "3c0124f9-e564-4c42-86f7-fa79457aedc3" } } \ No newline at end of file diff --git a/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.ProfileTests/ProfileListBySubcriptionTest.json b/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.ProfileTests/ProfileListBySubcriptionTest.json index d5db5473ce66a..835b5993c7a95 100644 --- a/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.ProfileTests/ProfileListBySubcriptionTest.json +++ b/src/SDKs/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.ProfileTests/ProfileListBySubcriptionTest.json @@ -1,111 +1,108 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b87df41a-1ada-4a64-95b6-eccbdec15b61" + "84e64e88-f780-4525-9b09-cc0f007a61bf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:23:34 GMT" + "Wed, 13 Mar 2019 17:06:29 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "5c30cc95-cd5e-4c7b-aaca-2258b01fd421" + "0d559a8f-d107-4858-bd9a-8f433ee0373d" ], "x-ms-correlation-request-id": [ - "5c30cc95-cd5e-4c7b-aaca-2258b01fd421" + "0d559a8f-d107-4858-bd9a-8f433ee0373d" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022334Z:5c30cc95-cd5e-4c7b-aaca-2258b01fd421" + "WESTUS2:20190313T170629Z:0d559a8f-d107-4858-bd9a-8f433ee0373d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup2516\",\r\n \"name\": \"cdnResourceGroup2516\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d9db358-4ee9-49ec-9f70-c76bd96b4ad0" + "b95d3893-334b-4e38-bc2a-90e6f6406297" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile847\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:08 GMT" + "Wed, 13 Mar 2019 17:06:29 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "2e62669d-2755-4ef2-b11d-c2420ddffb27" + "ebd320a0-96ce-40a4-bdb1-7b40331eacbf" ], "x-ms-client-request-id": [ - "6d9db358-4ee9-49ec-9f70-c76bd96b4ad0" + "b95d3893-334b-4e38-bc2a-90e6f6406297" ], "OData-Version": [ "4.0" @@ -120,68 +117,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11999" ], "x-ms-correlation-request-id": [ - "0b31db1e-8dbb-450e-8564-b976088693dd" + "39575e38-37cc-4b8c-aa63-d377ddf9fafb" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022409Z:0b31db1e-8dbb-450e-8564-b976088693dd" + "WESTUS2:20190313T170630Z:39575e38-37cc-4b8c-aa63-d377ddf9fafb" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "4679" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"0311verizonssltesting\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/03112019StandardVerizon/providers/Microsoft.Cdn/profiles/0311verizonssltesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311akamaissltesting\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/03112019StandardAkamai/providers/Microsoft.Cdn/profiles/0311akamaissltesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-verizonstd-ssltests\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-verizonstd-ssltests\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0312endpointtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/ChaoTest/providers/Microsoft.Cdn/profiles/0312endpointtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"BruceMSTestPro\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/Bruce/providers/Microsoft.Cdn/profiles/BruceMSTestPro\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-verizonstd-new\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-verizonstd-new\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile4011\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup5594/providers/Microsoft.Cdn/profiles/profile4011\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311SMSSLtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/SMcustomdomainSSL/providers/Microsoft.Cdn/profiles/0311SMSSLtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-msftstd-ssltests\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-msftstd-ssltests\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMediaStreamingPlatformCdnProfile-StandardVerizon\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/ChaoTest/providers/Microsoft.Cdn/profiles/AzureMediaStreamingPlatformCdnProfile-StandardVerizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CreatedBy\": \"Microsoft.Media\",\r\n \"FriendlyName\": \"0129\"\r\n },\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0305AkamaiSSLtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/AkamaiTest/providers/Microsoft.Cdn/profiles/0305AkamaiSSLtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "872097c2-8f89-406c-b3f7-7b123d5baf7f" + "e347aaab-9a44-4758-b756-318f4104fe79" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile2687\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/profiles/profile2687\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile847\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:40 GMT" + "Wed, 13 Mar 2019 17:07:39 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "7b7436b2-1f8d-4e4d-b111-e6654f4fddeb" + "f86f75b9-52a8-47e5-b231-3db890c07834" ], "x-ms-client-request-id": [ - "872097c2-8f89-406c-b3f7-7b123d5baf7f" + "e347aaab-9a44-4758-b756-318f4104fe79" ], "OData-Version": [ "4.0" @@ -196,68 +192,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11989" ], "x-ms-correlation-request-id": [ - "0205d967-e7fd-4c33-93c8-1b0138eabc36" + "6b51912c-9d38-4839-b4db-63fc264cd214" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022441Z:0205d967-e7fd-4c33-93c8-1b0138eabc36" + "WESTUS2:20190313T170739Z:6b51912c-9d38-4839-b4db-63fc264cd214" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "5539" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"0305AkamaiSSLtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/AkamaiTest/providers/Microsoft.Cdn/profiles/0305AkamaiSSLtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311verizonssltesting\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/03112019StandardVerizon/providers/Microsoft.Cdn/profiles/0311verizonssltesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311akamaissltesting\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/03112019StandardAkamai/providers/Microsoft.Cdn/profiles/0311akamaissltesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile4011\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup5594/providers/Microsoft.Cdn/profiles/profile4011\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile5783\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/profiles/profile5783\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMediaStreamingPlatformCdnProfile-StandardVerizon\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/ChaoTest/providers/Microsoft.Cdn/profiles/AzureMediaStreamingPlatformCdnProfile-StandardVerizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CreatedBy\": \"Microsoft.Media\",\r\n \"FriendlyName\": \"0129\"\r\n },\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-verizonstd-ssltests\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-verizonstd-ssltests\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0312endpointtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/ChaoTest/providers/Microsoft.Cdn/profiles/0312endpointtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-verizonstd-new\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-verizonstd-new\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-msftstd-ssltests\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-msftstd-ssltests\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"BruceMSTestPro\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/Bruce/providers/Microsoft.Cdn/profiles/BruceMSTestPro\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311SMSSLtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/SMcustomdomainSSL/providers/Microsoft.Cdn/profiles/0311SMSSLtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile8117\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/profiles/profile8117\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a3b2ed9-40b6-4ab1-a4b2-9ba85ea55303" + "d1808436-e3ff-4ff4-82dd-04d1874cbe51" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile2687\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/profiles/profile2687\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:53 GMT" + "Wed, 13 Mar 2019 17:07:51 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "f467935a-3ce1-4c7c-bfec-e4f6f84c26d6" + "b1e78dde-0b63-408f-9f41-e8d2ca10ae69" ], "x-ms-client-request-id": [ - "0a3b2ed9-40b6-4ab1-a4b2-9ba85ea55303" + "d1808436-e3ff-4ff4-82dd-04d1874cbe51" ], "OData-Version": [ "4.0" @@ -272,68 +267,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11986" ], "x-ms-correlation-request-id": [ - "a2132af2-9d96-41d7-83de-efb44c926a19" + "6ddfcbb4-00c9-441d-b16c-4626af5db742" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022453Z:a2132af2-9d96-41d7-83de-efb44c926a19" + "WESTUS2:20190313T170752Z:6ddfcbb4-00c9-441d-b16c-4626af5db742" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "5109" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"nachakra-verizonstd-ssltests\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-verizonstd-ssltests\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311verizonssltesting\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/03112019StandardVerizon/providers/Microsoft.Cdn/profiles/0311verizonssltesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0312endpointtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/ChaoTest/providers/Microsoft.Cdn/profiles/0312endpointtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311akamaissltesting\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/03112019StandardAkamai/providers/Microsoft.Cdn/profiles/0311akamaissltesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"BruceMSTestPro\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/Bruce/providers/Microsoft.Cdn/profiles/BruceMSTestPro\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-verizonstd-new\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-verizonstd-new\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311SMSSLtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/SMcustomdomainSSL/providers/Microsoft.Cdn/profiles/0311SMSSLtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0305AkamaiSSLtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/AkamaiTest/providers/Microsoft.Cdn/profiles/0305AkamaiSSLtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile8117\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/profiles/profile8117\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile4011\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup5594/providers/Microsoft.Cdn/profiles/profile4011\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMediaStreamingPlatformCdnProfile-StandardVerizon\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/ChaoTest/providers/Microsoft.Cdn/profiles/AzureMediaStreamingPlatformCdnProfile-StandardVerizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CreatedBy\": \"Microsoft.Media\",\r\n \"FriendlyName\": \"0129\"\r\n },\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-msftstd-ssltests\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-msftstd-ssltests\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/providers/Microsoft.Cdn/profiles?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2aef8516-5bc1-4182-93fe-67f4179612bc" + "0b00b768-8b13-48e6-a635-166df82d2757" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:04 GMT" + "Wed, 13 Mar 2019 17:08:03 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "163f07b7-0d95-44c7-8ecd-9568956cb828" + "086aae10-bde6-4ea1-b875-904a539403ec" ], "x-ms-client-request-id": [ - "2aef8516-5bc1-4182-93fe-67f4179612bc" + "0b00b768-8b13-48e6-a635-166df82d2757" ], "OData-Version": [ "4.0" @@ -348,123 +342,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11983" ], "x-ms-correlation-request-id": [ - "ecddaf37-45b5-4418-8cce-90ebb48a58cf" + "26d42927-8776-4633-adf9-fd62834a5abe" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022504Z:ecddaf37-45b5-4418-8cce-90ebb48a58cf" + "WESTUS2:20190313T170804Z:26d42927-8776-4633-adf9-fd62834a5abe" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "a96b69db-0061-4e1d-9ae1-8859b3f8a40a" ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup5984\",\r\n \"name\": \"cdnResourceGroup5984\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { "Content-Length": [ - "193" + "4679" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 21 Mar 2018 02:23:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "df481eb0-c55b-4754-8a0d-22a212ea38ed" - ], - "x-ms-correlation-request-id": [ - "df481eb0-c55b-4754-8a0d-22a212ea38ed" - ], - "x-ms-routing-request-id": [ - "WESTUS:20180321T022335Z:df481eb0-c55b-4754-8a0d-22a212ea38ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile4011\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup5594/providers/Microsoft.Cdn/profiles/profile4011\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0312endpointtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/ChaoTest/providers/Microsoft.Cdn/profiles/0312endpointtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0305AkamaiSSLtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/AkamaiTest/providers/Microsoft.Cdn/profiles/0305AkamaiSSLtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311akamaissltesting\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/03112019StandardAkamai/providers/Microsoft.Cdn/profiles/0311akamaissltesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-verizonstd-ssltests\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-verizonstd-ssltests\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-verizonstd-new\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-verizonstd-new\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"BruceMSTestPro\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/Bruce/providers/Microsoft.Cdn/profiles/BruceMSTestPro\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311verizonssltesting\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/03112019StandardVerizon/providers/Microsoft.Cdn/profiles/0311verizonssltesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"0311SMSSLtest\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/SMcustomdomainSSL/providers/Microsoft.Cdn/profiles/0311SMSSLtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-msftstd-ssltests\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/byoc/providers/Microsoft.Cdn/profiles/nachakra-msftstd-ssltests\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMediaStreamingPlatformCdnProfile-StandardVerizon\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/ChaoTest/providers/Microsoft.Cdn/profiles/AzureMediaStreamingPlatformCdnProfile-StandardVerizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CreatedBy\": \"Microsoft.Media\",\r\n \"FriendlyName\": \"0129\"\r\n },\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4NDc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup2516/providers/Microsoft.Cdn/profiles/profile5783?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzgzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "142" - ], "x-ms-client-request-id": [ - "02ad8e5f-c5cb-4dc3-9017-5b11afd8a3f8" + "17477622-46b8-4669-8429-76ef11f4b9ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"profile847\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "396" ], "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" + "application/json; charset=utf-8" ], + "Content-Length": [ + "142" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:23:36 GMT" + "Wed, 13 Mar 2019 17:06:32 GMT" ], "Pragma": [ "no-cache" @@ -476,13 +408,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "5fc945ab-bd36-4597-ac1e-61343d098a7f" + "7d785db4-8b7c-49ba-8bdf-2b152fa7b544" ], "x-ms-client-request-id": [ - "02ad8e5f-c5cb-4dc3-9017-5b11afd8a3f8" + "17477622-46b8-4669-8429-76ef11f4b9ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/operationresults/ff88d6ef-4888-4490-908e-29e009e9f6b0?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/operationresults/47874ead-cb9b-4b10-a174-ec3b5567cad1?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -500,59 +432,58 @@ "1199" ], "x-ms-correlation-request-id": [ - "4c782f97-a71d-4314-b8c3-92c2fc93af05" + "97eb079c-4bf0-412e-81c2-d7b3c501e762" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022337Z:4c782f97-a71d-4314-b8c3-92c2fc93af05" + "WESTUS2:20190313T170633Z:97eb079c-4bf0-412e-81c2-d7b3c501e762" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "398" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile5783\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/profiles/profile5783\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/operationresults/ff88d6ef-4888-4490-908e-29e009e9f6b0?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZmY4OGQ2ZWYtNDg4OC00NDkwLTkwOGUtMjllMDA5ZTlmNmIwP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/operationresults/47874ead-cb9b-4b10-a174-ec3b5567cad1?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDc4NzRlYWQtY2I5Yi00YjEwLWExNzQtZWMzYjU1NjdjYWQxP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:23:46 GMT" + "Wed, 13 Mar 2019 17:06:43 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "bd68e958-65d9-4226-a13e-861ce0d5f70b" + "4567cc7e-987c-43d1-976d-446f0b5ac615" ], "x-ms-client-request-id": [ - "689f2e7f-70a4-4d36-b1ab-82a3bc244c77" + "a8899532-fab0-4495-8f79-72586ba191b4" ], "OData-Version": [ "4.0" @@ -567,62 +498,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11998" ], "x-ms-correlation-request-id": [ - "cd22c7f8-ecd4-4a9f-aece-66a066db500d" + "39666975-2a23-45ad-a725-53dc46258180" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022347Z:cd22c7f8-ecd4-4a9f-aece-66a066db500d" + "WESTUS2:20190313T170643Z:39666975-2a23-45ad-a725-53dc46258180" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/operationresults/ff88d6ef-4888-4490-908e-29e009e9f6b0?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZmY4OGQ2ZWYtNDg4OC00NDkwLTkwOGUtMjllMDA5ZTlmNmIwP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/operationresults/47874ead-cb9b-4b10-a174-ec3b5567cad1?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDc4NzRlYWQtY2I5Yi00YjEwLWExNzQtZWMzYjU1NjdjYWQxP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:23:57 GMT" + "Wed, 13 Mar 2019 17:06:54 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "43351659-1693-4132-ae9a-c76481ed317b" + "1dd629d5-e251-4bf8-a61f-29e511147692" ], "x-ms-client-request-id": [ - "8ec3d120-b863-453f-af4d-34169b47e79a" + "e2ca97ff-88ac-4106-bc43-2cc4a74a1c63" ], "OData-Version": [ "4.0" @@ -637,62 +567,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11997" ], "x-ms-correlation-request-id": [ - "475bea26-51a7-47c7-b0c0-2d02e3602a7a" + "75f2baa8-c880-4092-866e-5f2d6a0afbd3" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022357Z:475bea26-51a7-47c7-b0c0-2d02e3602a7a" + "WESTUS2:20190313T170654Z:75f2baa8-c880-4092-866e-5f2d6a0afbd3" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/operationresults/ff88d6ef-4888-4490-908e-29e009e9f6b0?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZmY4OGQ2ZWYtNDg4OC00NDkwLTkwOGUtMjllMDA5ZTlmNmIwP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/operationresults/47874ead-cb9b-4b10-a174-ec3b5567cad1?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDc4NzRlYWQtY2I5Yi00YjEwLWExNzQtZWMzYjU1NjdjYWQxP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:07 GMT" + "Wed, 13 Mar 2019 17:07:04 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "22fd90d7-0155-4167-bf58-e0064d747347" + "ea959ac0-68dd-46f9-af6e-6f8290271c53" ], "x-ms-client-request-id": [ - "bbaa0066-9940-4e54-b2b9-329172c32df5" + "7f445b75-58a3-499e-8e5e-97d1a28b32cf" ], "OData-Version": [ "4.0" @@ -707,62 +636,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11996" ], "x-ms-correlation-request-id": [ - "c9d0b2d9-70ee-4d1b-b667-2efd9f0b1e22" + "33242282-04c6-492b-9a52-dc19a5f75199" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022408Z:c9d0b2d9-70ee-4d1b-b667-2efd9f0b1e22" + "WESTUS2:20190313T170704Z:33242282-04c6-492b-9a52-dc19a5f75199" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4NDc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup2516/providers/Microsoft.Cdn/profiles/profile5783?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzgzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"profile847\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:07 GMT" + "Wed, 13 Mar 2019 17:07:04 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "fe788825-5ee3-4179-920b-0066dab783dc" + "c8d505a1-1cac-4df1-baab-802cdfe2b87a" ], "x-ms-client-request-id": [ - "6be90cf3-1f3f-46af-ad80-369af06613d7" + "9c697bec-7057-41e4-94d1-6f6e34fe0fd6" ], "OData-Version": [ "4.0" @@ -777,68 +705,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11995" ], "x-ms-correlation-request-id": [ - "56e0c61d-deb1-4933-939c-5ea2ea1b448c" + "fe692146-26cd-4d1b-aba2-80766464e77e" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022408Z:56e0c61d-deb1-4933-939c-5ea2ea1b448c" + "WESTUS2:20190313T170704Z:fe692146-26cd-4d1b-aba2-80766464e77e" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile5783\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/profiles/profile5783\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4NDc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup2516/providers/Microsoft.Cdn/profiles/profile5783?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzgzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95467381-4762-4009-9e00-f60e38349b90" + "57327dff-9ec8-4ee2-b140-3f91ecfa7eb1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"profile847\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:07 GMT" + "Wed, 13 Mar 2019 17:07:05 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "0cf17a5c-5044-4395-b0f5-f50ded67a826" + "5e735c26-c378-4aa5-a47d-cd3cc53fe058" ], "x-ms-client-request-id": [ - "95467381-4762-4009-9e00-f60e38349b90" + "57327dff-9ec8-4ee2-b140-3f91ecfa7eb1" ], "OData-Version": [ "4.0" @@ -853,59 +780,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11994" ], "x-ms-correlation-request-id": [ - "d9f36540-3591-419c-a3be-266b39693208" + "96328c6f-e511-4265-a86c-1b6fad2b2b59" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022408Z:d9f36540-3591-419c-a3be-266b39693208" + "WESTUS2:20190313T170705Z:96328c6f-e511-4265-a86c-1b6fad2b2b59" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile5783\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/profiles/profile5783\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "2df80071-0a3c-4751-95f1-4426dbcc9d9e" + "25535ee6-4d3a-4bb7-98b8-794ea6b39ed1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup9254\",\r\n \"name\": \"cdnResourceGroup9254\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "193" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:09 GMT" + "Wed, 13 Mar 2019 17:07:05 GMT" ], "Pragma": [ "no-cache" @@ -914,62 +843,64 @@ "1198" ], "x-ms-request-id": [ - "3154d83b-f368-4645-bb12-b0768cd6ea23" + "3068148f-196d-4c63-a69b-4add02165f8f" ], "x-ms-correlation-request-id": [ - "3154d83b-f368-4645-bb12-b0768cd6ea23" + "3068148f-196d-4c63-a69b-4add02165f8f" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022409Z:3154d83b-f368-4645-bb12-b0768cd6ea23" + "WESTUS2:20190313T170705Z:3068148f-196d-4c63-a69b-4add02165f8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6299\",\r\n \"name\": \"cdnResourceGroup6299\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup9254/providers/Microsoft.Cdn/profiles/profile2687?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNjg3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6299/providers/Microsoft.Cdn/profiles/profile8117?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4MTE3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "142" - ], "x-ms-client-request-id": [ - "d681ad98-1db7-469b-bb5e-b16d9eeee6d9" + "ed9b7867-12e0-46c2-aa4e-199950f6403b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"profile2687\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/profiles/profile2687\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "398" ], "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" + "application/json; charset=utf-8" ], + "Content-Length": [ + "142" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:10 GMT" + "Wed, 13 Mar 2019 17:07:07 GMT" ], "Pragma": [ "no-cache" @@ -981,13 +912,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "1f8e9e56-894f-4f50-8f08-19b186116f6c" + "023a7d05-dd69-4c54-9739-7b53fa8ecb48" ], "x-ms-client-request-id": [ - "d681ad98-1db7-469b-bb5e-b16d9eeee6d9" + "ed9b7867-12e0-46c2-aa4e-199950f6403b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/operationresults/0e5d41a8-b307-4cb7-990a-b8b1a6a470bc?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/operationresults/24bcc3ed-a33d-48d7-b59e-9f34ee40be2c?api-version=2017-10-12" ], "OData-Version": [ "4.0" @@ -1005,59 +936,58 @@ "1198" ], "x-ms-correlation-request-id": [ - "23db88d4-8b4e-4fc5-b2df-173216486381" + "8d7bcfb4-d7b0-412a-8c92-7618e56f591d" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022410Z:23db88d4-8b4e-4fc5-b2df-173216486381" + "WESTUS2:20190313T170707Z:8d7bcfb4-d7b0-412a-8c92-7618e56f591d" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "398" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile8117\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/profiles/profile8117\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/operationresults/0e5d41a8-b307-4cb7-990a-b8b1a6a470bc?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGU1ZDQxYTgtYjMwNy00Y2I3LTk5MGEtYjhiMWE2YTQ3MGJjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/operationresults/24bcc3ed-a33d-48d7-b59e-9f34ee40be2c?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjRiY2MzZWQtYTMzZC00OGQ3LWI1OWUtOWYzNGVlNDBiZTJjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:20 GMT" + "Wed, 13 Mar 2019 17:07:17 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "6b24615b-09c1-4eae-81e4-98dab64a4e94" + "e6e5940e-b417-4e24-94ad-f0627d9bc91e" ], "x-ms-client-request-id": [ - "41ab3744-0526-4518-8058-1994d50acd61" + "bbcc2955-8268-45f5-add1-5cad05197c56" ], "OData-Version": [ "4.0" @@ -1072,62 +1002,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11993" ], "x-ms-correlation-request-id": [ - "40132559-b46e-4173-bd62-60ade094f167" + "8c49902f-dca5-4cf8-ba28-80a52f13ec0c" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022420Z:40132559-b46e-4173-bd62-60ade094f167" + "WESTUS2:20190313T170718Z:8c49902f-dca5-4cf8-ba28-80a52f13ec0c" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/operationresults/0e5d41a8-b307-4cb7-990a-b8b1a6a470bc?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGU1ZDQxYTgtYjMwNy00Y2I3LTk5MGEtYjhiMWE2YTQ3MGJjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/operationresults/24bcc3ed-a33d-48d7-b59e-9f34ee40be2c?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjRiY2MzZWQtYTMzZC00OGQ3LWI1OWUtOWYzNGVlNDBiZTJjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:30 GMT" + "Wed, 13 Mar 2019 17:07:27 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "e22e22fc-5fb6-47a1-8189-adc95a5a7d26" + "136dcb7a-cb39-4fa0-b82c-ce77304d50f7" ], "x-ms-client-request-id": [ - "c875c95f-f190-4ef3-9f22-75ca68e25b11" + "fa0a63de-92cb-4885-9db9-e9dd0cb389d9" ], "OData-Version": [ "4.0" @@ -1142,62 +1071,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11992" ], "x-ms-correlation-request-id": [ - "2fbc210a-4efb-433c-b26b-503e820247d4" + "8e6e8d15-a9df-4d0b-b666-7fc02d147c95" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022430Z:2fbc210a-4efb-433c-b26b-503e820247d4" + "WESTUS2:20190313T170728Z:8e6e8d15-a9df-4d0b-b666-7fc02d147c95" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "78" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/operationresults/0e5d41a8-b307-4cb7-990a-b8b1a6a470bc?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGU1ZDQxYTgtYjMwNy00Y2I3LTk5MGEtYjhiMWE2YTQ3MGJjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/operationresults/24bcc3ed-a33d-48d7-b59e-9f34ee40be2c?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjRiY2MzZWQtYTMzZC00OGQ3LWI1OWUtOWYzNGVlNDBiZTJjP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:40 GMT" + "Wed, 13 Mar 2019 17:07:38 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "67b5d505-1e5c-4ad4-bc96-aaaa01f6106e" + "4d033d33-16a5-42d8-accd-c764499df108" ], "x-ms-client-request-id": [ - "98221f55-9913-4f4b-9439-19819e3a3236" + "4ca3d474-5c0b-4f08-b136-4b038f7d9484" ], "OData-Version": [ "4.0" @@ -1212,62 +1140,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11991" ], "x-ms-correlation-request-id": [ - "66a320e7-2126-4c8f-9bd1-85c4af8fde23" + "9dd44faf-6179-4961-8d3f-11a3aed3222f" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022441Z:66a320e7-2126-4c8f-9bd1-85c4af8fde23" + "WESTUS2:20190313T170738Z:9dd44faf-6179-4961-8d3f-11a3aed3222f" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup9254/providers/Microsoft.Cdn/profiles/profile2687?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNjg3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6299/providers/Microsoft.Cdn/profiles/profile8117?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4MTE3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"profile2687\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/profiles/profile2687\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:40 GMT" + "Wed, 13 Mar 2019 17:07:38 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "5d2537a4-1c37-4946-8fc7-94e611d07389" + "40dde23f-84c6-46cb-abae-4042a006592b" ], "x-ms-client-request-id": [ - "51fd1a70-e536-4744-a1b0-dcc5af6d7ed4" + "8a3f9c42-16d3-4c77-8624-799db59d3a51" ], "OData-Version": [ "4.0" @@ -1282,56 +1209,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11990" ], "x-ms-correlation-request-id": [ - "7e81e3bb-4e6e-4a2e-88d9-5bf110d58127" + "df2596a3-5a18-4ae8-9757-3aed485efd89" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022441Z:7e81e3bb-4e6e-4a2e-88d9-5bf110d58127" + "WESTUS2:20190313T170739Z:df2596a3-5a18-4ae8-9757-3aed485efd89" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"profile8117\",\r\n \"id\": \"/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/profiles/profile8117\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup5984/providers/Microsoft.Cdn/profiles/profile847?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4NDc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup2516/providers/Microsoft.Cdn/profiles/profile5783?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzgzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "352bf2fc-ff7c-4a0e-a487-92a7b9a7d144" + "e2f4fba7-6127-4072-8c09-4cb751fd0349" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:41 GMT" + "Wed, 13 Mar 2019 17:07:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/operationresults/d88b8242-2852-40a4-a49e-8b5fbae33247/profileresults/profile847?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/operationresults/0ae51666-19ad-4dde-bb1d-1e4d093bcd8f/profileresults/profile5783?api-version=2017-10-12" ], "Retry-After": [ "10" @@ -1340,13 +1272,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "7c88bee2-ce21-4e45-b8f3-f9bf2ae055e2" + "78f73abb-d2ec-4d56-8dae-33e96e997262" ], "x-ms-client-request-id": [ - "352bf2fc-ff7c-4a0e-a487-92a7b9a7d144" + "e2f4fba7-6127-4072-8c09-4cb751fd0349" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/operationresults/d88b8242-2852-40a4-a49e-8b5fbae33247?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/operationresults/0ae51666-19ad-4dde-bb1d-1e4d093bcd8f?api-version=2017-10-12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1357,63 +1289,59 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "a45e72e7-936b-485c-8b8d-a33611f23b95" + "e4ab6ebe-368f-40f4-87ab-77ecb7a5abfc" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022442Z:a45e72e7-936b-485c-8b8d-a33611f23b95" + "WESTUS2:20190313T170741Z:e4ab6ebe-368f-40f4-87ab-77ecb7a5abfc" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/operationresults/d88b8242-2852-40a4-a49e-8b5fbae33247?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDg4YjgyNDItMjg1Mi00MGE0LWE0OWUtOGI1ZmJhZTMzMjQ3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/operationresults/0ae51666-19ad-4dde-bb1d-1e4d093bcd8f?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGFlNTE2NjYtMTlhZC00ZGRlLWJiMWQtMWU0ZDA5M2JjZDhmP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:52 GMT" + "Wed, 13 Mar 2019 17:07:50 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "29b10948-dfde-438d-9b65-aec05fe08d0d" + "87c988ba-f4dc-4cbb-a311-9b90bdb6ee3e" ], "x-ms-client-request-id": [ - "53d06df8-5b1d-4e5e-9ce4-7e4164b3ffdd" + "cf174626-5d4f-4c14-8264-38e34aabdf49" ], "OData-Version": [ "4.0" @@ -1428,50 +1356,49 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11988" ], "x-ms-correlation-request-id": [ - "c297bea2-02cc-4d8b-90d4-9f7f5cd449b4" + "f608601e-34f5-4aa2-b891-7757490a7b66" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022452Z:c297bea2-02cc-4d8b-90d4-9f7f5cd449b4" + "WESTUS2:20190313T170751Z:f608601e-34f5-4aa2-b891-7757490a7b66" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984/providers/Microsoft.Cdn/operationresults/d88b8242-2852-40a4-a49e-8b5fbae33247/profileresults/profile847?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDg4YjgyNDItMjg1Mi00MGE0LWE0OWUtOGI1ZmJhZTMzMjQ3L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU4NDc/YXBpLXZlcnNpb249MjAxNy0xMC0xMg==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516/providers/Microsoft.Cdn/operationresults/0ae51666-19ad-4dde-bb1d-1e4d093bcd8f/profileresults/profile5783?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGFlNTE2NjYtMTlhZC00ZGRlLWJiMWQtMWU0ZDA5M2JjZDhmL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU1NzgzP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "104" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Language": [ - "en-US" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:52 GMT" + "Wed, 13 Mar 2019 17:07:51 GMT" ], "Pragma": [ "no-cache" @@ -1480,10 +1407,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "1956cdcf-d696-41cf-8862-a22b3101bac5" + "016a4cfd-5f69-44f3-a128-0ce291c44217" ], "x-ms-client-request-id": [ - "ca607efd-95da-4cd0-b261-d7f757bb0098" + "777e22a8-9919-4a5a-8f23-162d4938c11b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1495,56 +1422,64 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11987" ], "x-ms-correlation-request-id": [ - "059625b8-4f02-4bc8-aeb5-023925cb2899" + "db298849-0e96-4c52-b795-94a51054326f" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022453Z:059625b8-4f02-4bc8-aeb5-023925cb2899" + "WESTUS2:20190313T170751Z:db298849-0e96-4c52-b795-94a51054326f" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/cdnResourceGroup9254/providers/Microsoft.Cdn/profiles/profile2687?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNjg3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourceGroups/cdnResourceGroup6299/providers/Microsoft.Cdn/profiles/profile8117?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4MTE3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70e21425-ea47-4829-8443-84a7f8720603" + "242194c8-3225-4749-9640-c0c2b6b327ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:24:53 GMT" + "Wed, 13 Mar 2019 17:07:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/operationresults/2895e357-3d11-412d-9687-d5b71ab6fe71/profileresults/profile2687?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/operationresults/984e9854-c3c9-4db8-986f-47d0645ee0ff/profileresults/profile8117?api-version=2017-10-12" ], "Retry-After": [ "10" @@ -1553,13 +1488,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "9349e595-26b2-4a9c-9fc0-7b6eeb4dcac2" + "c6070000-8e0d-453c-b78f-d8b8d374f719" ], "x-ms-client-request-id": [ - "70e21425-ea47-4829-8443-84a7f8720603" + "242194c8-3225-4749-9640-c0c2b6b327ad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/operationresults/2895e357-3d11-412d-9687-d5b71ab6fe71?api-version=2017-10-12" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/operationresults/984e9854-c3c9-4db8-986f-47d0645ee0ff?api-version=2017-10-12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1570,63 +1505,59 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "3fe19580-e9ae-47a9-9871-3438a1eb6e7b" + "f5507831-5d2a-4669-b4e5-ff43173d1490" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022453Z:3fe19580-e9ae-47a9-9871-3438a1eb6e7b" + "WESTUS2:20190313T170753Z:f5507831-5d2a-4669-b4e5-ff43173d1490" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/operationresults/2895e357-3d11-412d-9687-d5b71ab6fe71?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjg5NWUzNTctM2QxMS00MTJkLTk2ODctZDViNzFhYjZmZTcxP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/operationresults/984e9854-c3c9-4db8-986f-47d0645ee0ff?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTg0ZTk4NTQtYzNjOS00ZGI4LTk4NmYtNDdkMDY0NWVlMGZmP2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:03 GMT" + "Wed, 13 Mar 2019 17:08:02 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "23e21311-8839-4d7a-ba70-93e91be920d1" + "92f270d8-4b81-41b5-835c-3c03cfdf6306" ], "x-ms-client-request-id": [ - "269a7854-f8d7-47b6-92e7-5b055e6415f0" + "ca51b68d-3e0c-43a0-8c8a-04c1586bd113" ], "OData-Version": [ "4.0" @@ -1641,50 +1572,49 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11985" ], "x-ms-correlation-request-id": [ - "74f64fb2-977e-4846-b800-acd4efa78f4d" + "b0350995-b590-468d-bd88-8ffaeea71eb1" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022504Z:74f64fb2-977e-4846-b800-acd4efa78f4d" + "WESTUS2:20190313T170803Z:b0350995-b590-468d-bd88-8ffaeea71eb1" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "77" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254/providers/Microsoft.Cdn/operationresults/2895e357-3d11-412d-9687-d5b71ab6fe71/profileresults/profile2687?api-version=2017-10-12", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjg5NWUzNTctM2QxMS00MTJkLTk2ODctZDViNzFhYjZmZTcxL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUyNjg3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299/providers/Microsoft.Cdn/operationresults/984e9854-c3c9-4db8-986f-47d0645ee0ff/profileresults/profile8117?api-version=2017-10-12", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTg0ZTk4NTQtYzNjOS00ZGI4LTk4NmYtNDdkMDY0NWVlMGZmL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU4MTE3P2FwaS12ZXJzaW9uPTIwMTctMTAtMTI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.0.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "104" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Language": [ - "en-US" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:04 GMT" + "Wed, 13 Mar 2019 17:08:03 GMT" ], "Pragma": [ "no-cache" @@ -1693,10 +1623,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "0e51f142-d4ce-410a-b895-db0fd664a605" + "ce384cd2-acef-4307-aa99-4fbe12958734" ], "x-ms-client-request-id": [ - "cc1c3ade-6a78-49b6-95b1-4e6d387de3e6" + "737ff020-ad12-49de-9515-ebf547f539bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1708,460 +1638,603 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11984" ], "x-ms-correlation-request-id": [ - "459e83d8-eb62-4b74-80b5-d821ab6cd194" + "de3561ac-e5bf-46fd-a5e0-f227f162280c" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022504Z:459e83d8-eb62-4b74-80b5-d821ab6cd194" + "WESTUS2:20190313T170804Z:de3561ac-e5bf-46fd-a5e0-f227f162280c" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup5984?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTg0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup2516?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTE2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "264aec01-5e31-4800-abb2-2755bcca038f" + "129d9aeb-8e4e-4b79-b427-86aa9c790f96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:04 GMT" + "Wed, 13 Mar 2019 17:08:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjUxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "bdbaf3e0-e0e1-4f6b-b941-2b11f93e8597" + "f2febed3-a5ad-4e3e-89c6-b83cd14eab2b" ], "x-ms-correlation-request-id": [ - "bdbaf3e0-e0e1-4f6b-b941-2b11f93e8597" + "f2febed3-a5ad-4e3e-89c6-b83cd14eab2b" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022504Z:bdbaf3e0-e0e1-4f6b-b941-2b11f93e8597" + "WESTUS2:20190313T170805Z:f2febed3-a5ad-4e3e-89c6-b83cd14eab2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGs0TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjUxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalV4TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:19 GMT" + "Wed, 13 Mar 2019 17:08:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjUxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "803a708d-3453-491e-b1e8-a9ad2acf732e" + "f94147d9-f428-4407-9480-8b5f70908718" ], "x-ms-correlation-request-id": [ - "803a708d-3453-491e-b1e8-a9ad2acf732e" + "f94147d9-f428-4407-9480-8b5f70908718" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022519Z:803a708d-3453-491e-b1e8-a9ad2acf732e" + "WESTUS2:20190313T170820Z:f94147d9-f428-4407-9480-8b5f70908718" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGs0TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjUxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalV4TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 Mar 2019 17:08:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjUxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4a2564bd-16e8-4009-922e-8eda86941b24" + ], + "x-ms-correlation-request-id": [ + "4a2564bd-16e8-4009-922e-8eda86941b24" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T170835Z:4a2564bd-16e8-4009-922e-8eda86941b24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Content-Length": [ "0" ], "Expires": [ "-1" - ], + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjUxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalV4TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:34 GMT" + "Wed, 13 Mar 2019 17:08:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11997" ], "x-ms-request-id": [ - "289a2257-a645-4d90-92e7-659f38d8fa98" + "e790fab9-a78a-4e54-a830-e1b280a3c1bd" ], "x-ms-correlation-request-id": [ - "289a2257-a645-4d90-92e7-659f38d8fa98" + "e790fab9-a78a-4e54-a830-e1b280a3c1bd" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022534Z:289a2257-a645-4d90-92e7-659f38d8fa98" + "WESTUS2:20190313T170850Z:e790fab9-a78a-4e54-a830-e1b280a3c1bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGs0TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjUxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalV4TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:34 GMT" + "Wed, 13 Mar 2019 17:08:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11996" ], "x-ms-request-id": [ - "a6c83570-6970-49f0-8dcb-1f8d2ba3d184" + "28f0fd63-b806-4efb-8283-262b67749408" ], "x-ms-correlation-request-id": [ - "a6c83570-6970-49f0-8dcb-1f8d2ba3d184" + "28f0fd63-b806-4efb-8283-262b67749408" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022535Z:a6c83570-6970-49f0-8dcb-1f8d2ba3d184" + "WESTUS2:20190313T170850Z:28f0fd63-b806-4efb-8283-262b67749408" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/cdnResourceGroup9254?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjU0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/resourcegroups/cdnResourceGroup6299?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Mjk5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "192835b3-a90b-4376-8420-5beb7abef7d0" + "9df3399e-b346-4f44-88e6-c63d3da624c4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:34 GMT" + "Wed, 13 Mar 2019 17:08:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTI1NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjI5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-request-id": [ - "fbcf97d4-46e5-4e20-ad3d-9de47c4707d7" + "e6d6a63a-d0d9-4890-a2e4-cd6c640b82a2" ], "x-ms-correlation-request-id": [ - "fbcf97d4-46e5-4e20-ad3d-9de47c4707d7" + "e6d6a63a-d0d9-4890-a2e4-cd6c640b82a2" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022535Z:fbcf97d4-46e5-4e20-ad3d-9de47c4707d7" + "WESTUS2:20190313T170850Z:e6d6a63a-d0d9-4890-a2e4-cd6c640b82a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTI1NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVEkxTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjI5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakk1T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:25:50 GMT" + "Wed, 13 Mar 2019 17:09:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTI1NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjI5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11995" ], "x-ms-request-id": [ - "c36a2c8c-91e3-4e0b-bdae-73e959da4452" + "20d39764-7618-4c06-9755-75be98af3c39" ], "x-ms-correlation-request-id": [ - "c36a2c8c-91e3-4e0b-bdae-73e959da4452" + "20d39764-7618-4c06-9755-75be98af3c39" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022550Z:c36a2c8c-91e3-4e0b-bdae-73e959da4452" + "WESTUS2:20190313T170906Z:20d39764-7618-4c06-9755-75be98af3c39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTI1NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVEkxTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjI5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakk1T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 Mar 2019 17:09:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjI5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "fac63b2a-51d6-436d-a072-d700e1aff4d0" + ], + "x-ms-correlation-request-id": [ + "fac63b2a-51d6-436d-a072-d700e1aff4d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T170921Z:fac63b2a-51d6-436d-a072-d700e1aff4d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Content-Length": [ "0" ], "Expires": [ "-1" - ], + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjI5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakk1T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:26:05 GMT" + "Wed, 13 Mar 2019 17:09:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11993" ], "x-ms-request-id": [ - "336378db-75fa-462e-8c42-81891808076b" + "091a82ae-f48e-45ed-9811-8df20b415ce9" ], "x-ms-correlation-request-id": [ - "336378db-75fa-462e-8c42-81891808076b" + "091a82ae-f48e-45ed-9811-8df20b415ce9" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022605Z:336378db-75fa-462e-8c42-81891808076b" + "WESTUS2:20190313T170936Z:091a82ae-f48e-45ed-9811-8df20b415ce9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTI1NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVEkxTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3c0124f9-e564-4c42-86f7-fa79457aedc3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjI5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2MwMTI0ZjktZTU2NC00YzQyLTg2ZjctZmE3OTQ1N2FlZGMzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakk1T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 21 Mar 2018 02:26:05 GMT" + "Wed, 13 Mar 2019 17:09:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11992" ], "x-ms-request-id": [ - "a00b947f-0a84-47b7-96d6-433791d1bb64" + "c249ffe7-b8e2-4506-a99f-baffdf4412a5" ], "x-ms-correlation-request-id": [ - "a00b947f-0a84-47b7-96d6-433791d1bb64" + "c249ffe7-b8e2-4506-a99f-baffdf4412a5" ], "x-ms-routing-request-id": [ - "WESTUS:20180321T022605Z:a00b947f-0a84-47b7-96d6-433791d1bb64" + "WESTUS2:20190313T170936Z:c249ffe7-b8e2-4506-a99f-baffdf4412a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup5984", - "cdnResourceGroup9254" + "cdnResourceGroup2516", + "cdnResourceGroup6299" ], "ProfileListBySubcriptionTest": [ - "profile847", - "profile2687" + "profile5783", + "profile8117" ] }, "Variables": { - "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + "SubscriptionId": "3c0124f9-e564-4c42-86f7-fa79457aedc3" } } \ No newline at end of file diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/CdnManagementClient.cs b/src/SDKs/Cdn/Management.Cdn/Generated/CdnManagementClient.cs index 7bf710264a05f..6346d5cb132f0 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/CdnManagementClient.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/CdnManagementClient.cs @@ -397,6 +397,8 @@ private void Initialize() DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("name")); SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("name")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("name")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("certificateSource")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("certificateSource")); CustomInitialize(); DeserializationSettings.Converters.Add(new TransformationJsonConverter()); DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperations.cs b/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperations.cs index e4e11282c4030..63eb7b9ca4843 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperations.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperations.cs @@ -266,7 +266,7 @@ internal CustomDomainsOperations(CdnManagementClient client) } /// - /// Gets an exisitng custom domain within an endpoint. + /// Gets an existing custom domain within an endpoint. /// /// /// Name of the Resource group within the Azure subscription. @@ -772,6 +772,28 @@ internal CustomDomainsOperations(CdnManagementClient client) return _result; } + public async Task> EnableCustomHttpsWithHttpMessagesAsync( + string resourceGroupName, + string profileName, + string endpointName, + string customDomainName, + CustomDomainHttpsParameters customDomainHttpsParameters = default(CustomDomainHttpsParameters), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginEnableCustomHttpsWithHttpMessagesAsync( + resourceGroupName, + profileName, + endpointName, + customDomainName, + customDomainHttpsParameters, + customHeaders, + cancellationToken) + .ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Enable https delivery of the custom domain. /// @@ -787,6 +809,11 @@ internal CustomDomainsOperations(CdnManagementClient client) /// /// Name of the custom domain within an endpoint. /// + /// + /// The configuration specifying how to enable HTTPS for the custom domain - + /// using CDN managed certificate or user's own certificate. If not specified, + /// enabling ssl uses CDN managed certificate by default. + /// /// /// Headers that will be added to request. /// @@ -808,7 +835,14 @@ internal CustomDomainsOperations(CdnManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> EnableCustomHttpsWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginEnableCustomHttpsWithHttpMessagesAsync( + string resourceGroupName, + string profileName, + string endpointName, + string customDomainName, + CustomDomainHttpsParameters customDomainHttpsParameters = default(CustomDomainHttpsParameters), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -841,6 +875,10 @@ internal CustomDomainsOperations(CdnManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "customDomainName"); } + if (customDomainHttpsParameters != null) + { + customDomainHttpsParameters.Validate(); + } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -860,6 +898,7 @@ internal CustomDomainsOperations(CdnManagementClient client) tracingParameters.Add("profileName", profileName); tracingParameters.Add("endpointName", endpointName); tracingParameters.Add("customDomainName", customDomainName); + tracingParameters.Add("customDomainHttpsParameters", customDomainHttpsParameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "EnableCustomHttps", tracingParameters); } @@ -914,6 +953,12 @@ internal CustomDomainsOperations(CdnManagementClient client) // Serialize Request string _requestContent = null; + if(customDomainHttpsParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(customDomainHttpsParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperationsExtensions.cs b/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperationsExtensions.cs index 7c19cfb011126..4d0fae9c0b1dc 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperationsExtensions.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperationsExtensions.cs @@ -68,7 +68,7 @@ public static IPage ListByEndpoint(this ICustomDomainsOperations o } /// - /// Gets an exisitng custom domain within an endpoint. + /// Gets an existing custom domain within an endpoint. /// /// /// The operations group for this extension method. @@ -91,7 +91,7 @@ public static CustomDomain Get(this ICustomDomainsOperations operations, string } /// - /// Gets an exisitng custom domain within an endpoint. + /// Gets an existing custom domain within an endpoint. /// /// /// The operations group for this extension method. @@ -299,9 +299,14 @@ public static CustomDomain DisableCustomHttps(this ICustomDomainsOperations oper /// /// Name of the custom domain within an endpoint. /// - public static CustomDomain EnableCustomHttps(this ICustomDomainsOperations operations, string resourceGroupName, string profileName, string endpointName, string customDomainName) + /// + /// The configuration specifying how to enable HTTPS for the custom domain - + /// using CDN managed certificate or user's own certificate. If not specified, + /// enabling ssl uses CDN managed certificate by default. + /// + public static CustomDomain EnableCustomHttps(this ICustomDomainsOperations operations, string resourceGroupName, string profileName, string endpointName, string customDomainName, CustomDomainHttpsParameters customDomainHttpsParameters = default(CustomDomainHttpsParameters)) { - return operations.EnableCustomHttpsAsync(resourceGroupName, profileName, endpointName, customDomainName).GetAwaiter().GetResult(); + return operations.EnableCustomHttpsAsync(resourceGroupName, profileName, endpointName, customDomainName, customDomainHttpsParameters).GetAwaiter().GetResult(); } /// @@ -322,12 +327,17 @@ public static CustomDomain EnableCustomHttps(this ICustomDomainsOperations opera /// /// Name of the custom domain within an endpoint. /// + /// + /// The configuration specifying how to enable HTTPS for the custom domain - + /// using CDN managed certificate or user's own certificate. If not specified, + /// enabling ssl uses CDN managed certificate by default. + /// /// /// The cancellation token. /// - public static async Task EnableCustomHttpsAsync(this ICustomDomainsOperations operations, string resourceGroupName, string profileName, string endpointName, string customDomainName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task EnableCustomHttpsAsync(this ICustomDomainsOperations operations, string resourceGroupName, string profileName, string endpointName, string customDomainName, CustomDomainHttpsParameters customDomainHttpsParameters = default(CustomDomainHttpsParameters), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.EnableCustomHttpsWithHttpMessagesAsync(resourceGroupName, profileName, endpointName, customDomainName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.EnableCustomHttpsWithHttpMessagesAsync(resourceGroupName, profileName, endpointName, customDomainName, customDomainHttpsParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/ICustomDomainsOperations.cs b/src/SDKs/Cdn/Management.Cdn/Generated/ICustomDomainsOperations.cs index 42434e93092c5..ff7219ee7bcf1 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/ICustomDomainsOperations.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/ICustomDomainsOperations.cs @@ -52,7 +52,7 @@ public partial interface ICustomDomainsOperations /// Task>> ListByEndpointWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets an exisitng custom domain within an endpoint. + /// Gets an existing custom domain within an endpoint. /// /// /// Name of the Resource group within the Azure subscription. @@ -193,6 +193,12 @@ public partial interface ICustomDomainsOperations /// /// Name of the custom domain within an endpoint. /// + /// + /// The configuration specifying how to enable HTTPS for the custom + /// domain - using CDN managed certificate or user's own certificate. + /// If not specified, enabling ssl uses CDN managed certificate by + /// default. + /// /// /// The headers that will be added to request. /// @@ -208,7 +214,7 @@ public partial interface ICustomDomainsOperations /// /// Thrown when a required parameter is null /// - Task> EnableCustomHttpsWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> EnableCustomHttpsWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, CustomDomainHttpsParameters customDomainHttpsParameters = default(CustomDomainHttpsParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a new custom domain within an endpoint. /// diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/IProfilesOperations.cs b/src/SDKs/Cdn/Management.Cdn/Generated/IProfilesOperations.cs index 366dac8f49e83..56b356497c483 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/IProfilesOperations.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/IProfilesOperations.cs @@ -174,7 +174,7 @@ public partial interface IProfilesOperations Task DeleteWithHttpMessagesAsync(string resourceGroupName, string profileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Generates a dynamic SSO URI used to sign in to the CDN supplemental - /// portal. Supplemnetal portal is used to configure advanced feature + /// portal. Supplemental portal is used to configure advanced feature /// capabilities that are not yet available in the Azure portal, such /// as core reports in a standard profile; rules engine, advanced HTTP /// reports, and real-time stats and alerts in a premium profile. The diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CacheExpirationActionParameters.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CacheExpirationActionParameters.cs index 6353936cb6f4c..8a03e5f352a0d 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CacheExpirationActionParameters.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CacheExpirationActionParameters.cs @@ -35,7 +35,7 @@ public CacheExpirationActionParameters() /// Caching behavior for the requests that /// include query strings. Possible values include: 'BypassCache', /// 'Override', 'SetIfMissing' - /// The duration for which the the content + /// The duration for which the content /// needs to be cached. Allowed format is [d.]hh:mm:ss public CacheExpirationActionParameters(string cacheBehavior, string cacheDuration = default(string)) { @@ -66,8 +66,8 @@ static CacheExpirationActionParameters() public string CacheBehavior { get; set; } /// - /// Gets or sets the duration for which the the content needs to be - /// cached. Allowed format is [d.]hh:mm:ss + /// Gets or sets the duration for which the content needs to be cached. + /// Allowed format is [d.]hh:mm:ss /// [JsonProperty(PropertyName = "cacheDuration")] public string CacheDuration { get; set; } diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CdnCertificateSourceParameters.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CdnCertificateSourceParameters.cs new file mode 100644 index 0000000000000..91d5534469f62 --- /dev/null +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CdnCertificateSourceParameters.cs @@ -0,0 +1,82 @@ +// +// 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.Cdn.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines the parameters for using CDN managed certificate for securing + /// custom domain. + /// + public partial class CdnCertificateSourceParameters + { + /// + /// Initializes a new instance of the CdnCertificateSourceParameters + /// class. + /// + public CdnCertificateSourceParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CdnCertificateSourceParameters + /// class. + /// + /// Type of certificate used. Possible + /// values include: 'Shared', 'Dedicated' + public CdnCertificateSourceParameters(string certificateType) + { + CertificateType = certificateType; + CustomInit(); + } + /// + /// Static constructor for CdnCertificateSourceParameters class. + /// + static CdnCertificateSourceParameters() + { + Odatatype = "#Microsoft.Azure.Cdn.Models.CdnCertificateSourceParameters"; + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets type of certificate used. Possible values include: + /// 'Shared', 'Dedicated' + /// + [JsonProperty(PropertyName = "certificateType")] + public string CertificateType { get; set; } + + /// + /// + [JsonProperty(PropertyName = "@odata.type")] + public static string Odatatype { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (CertificateType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "CertificateType"); + } + } + } +} diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CdnManagedHttpsParameters.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CdnManagedHttpsParameters.cs new file mode 100644 index 0000000000000..bfde7b84f6534 --- /dev/null +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CdnManagedHttpsParameters.cs @@ -0,0 +1,80 @@ +// +// 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.Cdn.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines the certificate source parameters using CDN managed certificate + /// for enabling SSL. + /// + [Newtonsoft.Json.JsonObject("Cdn")] + public partial class CdnManagedHttpsParameters : CustomDomainHttpsParameters + { + /// + /// Initializes a new instance of the CdnManagedHttpsParameters class. + /// + public CdnManagedHttpsParameters() + { + CertificateSourceParameters = new CdnCertificateSourceParameters(); + CustomInit(); + } + + /// + /// Initializes a new instance of the CdnManagedHttpsParameters class. + /// + /// Defines the TLS extension protocol that + /// is used for secure delivery. Possible values include: + /// 'ServerNameIndication', 'IPBased' + /// Defines the certificate + /// source parameters using CDN managed certificate for enabling + /// SSL. + public CdnManagedHttpsParameters(string protocolType, CdnCertificateSourceParameters certificateSourceParameters) + : base(protocolType) + { + CertificateSourceParameters = certificateSourceParameters; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets defines the certificate source parameters using CDN + /// managed certificate for enabling SSL. + /// + [JsonProperty(PropertyName = "certificateSourceParameters")] + public CdnCertificateSourceParameters CertificateSourceParameters { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (CertificateSourceParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "CertificateSourceParameters"); + } + if (CertificateSourceParameters != null) + { + CertificateSourceParameters.Validate(); + } + } + } +} diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CertificateType.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CertificateType.cs new file mode 100644 index 0000000000000..907b6cb9afb00 --- /dev/null +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CertificateType.cs @@ -0,0 +1,22 @@ +// +// 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.Cdn.Models +{ + + /// + /// Defines values for CertificateType. + /// + public static class CertificateType + { + public const string Shared = "Shared"; + public const string Dedicated = "Dedicated"; + } +} diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CidrIpAddress.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CidrIpAddress.cs index 2fe4772acab2a..635c109ca637f 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CidrIpAddress.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CidrIpAddress.cs @@ -29,7 +29,7 @@ public CidrIpAddress() /// /// Initializes a new instance of the CidrIpAddress class. /// - /// Ip adress itself. + /// Ip address itself. /// The length of the prefix of the ip /// address. public CidrIpAddress(string baseIpAddress = default(string), int? prefixLength = default(int?)) @@ -45,7 +45,7 @@ public CidrIpAddress() partial void CustomInit(); /// - /// Gets or sets ip adress itself. + /// Gets or sets ip address itself. /// [JsonProperty(PropertyName = "baseIpAddress")] public string BaseIpAddress { get; set; } diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CustomDomain.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CustomDomain.cs index 250d96f8ce10d..07f741dd671d1 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CustomDomain.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CustomDomain.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Management.Cdn.Models /// /// Friendly domain name mapping to the endpoint hostname that the customer - /// provides for branding purposes, e.g. www.consoto.com. + /// provides for branding purposes, e.g. www.contoso.com. /// [Rest.Serialization.JsonTransformation] public partial class CustomDomain : ProxyResource diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/CustomDomainHttpsParameters.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CustomDomainHttpsParameters.cs new file mode 100644 index 0000000000000..ed285d1d3c76a --- /dev/null +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/CustomDomainHttpsParameters.cs @@ -0,0 +1,71 @@ +// +// 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.Cdn.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The JSON object that contains the properties to secure a custom domain. + /// + public partial class CustomDomainHttpsParameters + { + /// + /// Initializes a new instance of the CustomDomainHttpsParameters + /// class. + /// + public CustomDomainHttpsParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CustomDomainHttpsParameters + /// class. + /// + /// Defines the TLS extension protocol that + /// is used for secure delivery. Possible values include: + /// 'ServerNameIndication', 'IPBased' + public CustomDomainHttpsParameters(string protocolType) + { + ProtocolType = protocolType; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets defines the TLS extension protocol that is used for + /// secure delivery. Possible values include: 'ServerNameIndication', + /// 'IPBased' + /// + [JsonProperty(PropertyName = "protocolType")] + public string ProtocolType { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ProtocolType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProtocolType"); + } + } + } +} diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/Endpoint.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/Endpoint.cs index 5eb1dbad1ef3a..e1f3d0ae41b83 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/Models/Endpoint.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/Endpoint.cs @@ -50,7 +50,7 @@ public Endpoint() /// Apps, Blob Storage, and Cloud Services require this host header /// value to match the origin hostname by default. /// A directory path on the origin that CDN - /// can use to retreive content from, e.g. + /// can use to retrieve content from, e.g. /// contoso.cloudapp.net/originpath. /// List of content types on which /// compression applies. The value should be a valid MIME type. @@ -83,13 +83,13 @@ public Endpoint() /// most optimal routes for the CDN. This is relative to the origin /// path. /// List of rules defining the user's geo - /// access within a CDN endpoint. Each geo filter defines an acess rule - /// to a specified path or content, e.g. block APAC for path + /// access within a CDN endpoint. Each geo filter defines an access + /// rule to a specified path or content, e.g. block APAC for path /// /pictures/ /// A policy that specifies the delivery /// rules to be used for an endpoint. /// The host name of the endpoint structured as - /// {endpointName}.{DNSZone}, e.g. consoto.azureedge.net + /// {endpointName}.{DNSZone}, e.g. contoso.azureedge.net /// Resource status of the endpoint. /// Possible values include: 'Creating', 'Deleting', 'Running', /// 'Starting', 'Stopped', 'Stopping' @@ -133,7 +133,7 @@ public Endpoint() /// /// Gets or sets a directory path on the origin that CDN can use to - /// retreive content from, e.g. contoso.cloudapp.net/originpath. + /// retrieve content from, e.g. contoso.cloudapp.net/originpath. /// [JsonProperty(PropertyName = "properties.originPath")] public string OriginPath { get; set; } @@ -203,7 +203,7 @@ public Endpoint() /// /// Gets or sets list of rules defining the user's geo access within a - /// CDN endpoint. Each geo filter defines an acess rule to a specified + /// CDN endpoint. Each geo filter defines an access rule to a specified /// path or content, e.g. block APAC for path /pictures/ /// [JsonProperty(PropertyName = "properties.geoFilters")] @@ -218,7 +218,7 @@ public Endpoint() /// /// Gets the host name of the endpoint structured as - /// {endpointName}.{DNSZone}, e.g. consoto.azureedge.net + /// {endpointName}.{DNSZone}, e.g. contoso.azureedge.net /// [JsonProperty(PropertyName = "properties.hostName")] public string HostName { get; private set; } diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/EndpointUpdateParameters.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/EndpointUpdateParameters.cs index 4e5ddc21feefd..ebd9890d26ce6 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/Models/EndpointUpdateParameters.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/EndpointUpdateParameters.cs @@ -42,7 +42,7 @@ public EndpointUpdateParameters() /// Apps, Blob Storage, and Cloud Services require this host header /// value to match the origin hostname by default. /// A directory path on the origin that CDN - /// can use to retreive content from, e.g. + /// can use to retrieve content from, e.g. /// contoso.cloudapp.net/originpath. /// List of content types on which /// compression applies. The value should be a valid MIME type. @@ -75,8 +75,8 @@ public EndpointUpdateParameters() /// most optimal routes for the CDN. This is relative to the origin /// path. /// List of rules defining the user's geo - /// access within a CDN endpoint. Each geo filter defines an acess rule - /// to a specified path or content, e.g. block APAC for path + /// access within a CDN endpoint. Each geo filter defines an access + /// rule to a specified path or content, e.g. block APAC for path /// /pictures/ /// A policy that specifies the delivery /// rules to be used for an endpoint. @@ -120,7 +120,7 @@ public EndpointUpdateParameters() /// /// Gets or sets a directory path on the origin that CDN can use to - /// retreive content from, e.g. contoso.cloudapp.net/originpath. + /// retrieve content from, e.g. contoso.cloudapp.net/originpath. /// [JsonProperty(PropertyName = "properties.originPath")] public string OriginPath { get; set; } @@ -190,7 +190,7 @@ public EndpointUpdateParameters() /// /// Gets or sets list of rules defining the user's geo access within a - /// CDN endpoint. Each geo filter defines an acess rule to a specified + /// CDN endpoint. Each geo filter defines an access rule to a specified /// path or content, e.g. block APAC for path /pictures/ /// [JsonProperty(PropertyName = "properties.geoFilters")] diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/ErrorResponse.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/ErrorResponse.cs index 64363fde2e0da..a3cf1d493e7fb 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/Models/ErrorResponse.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/ErrorResponse.cs @@ -14,8 +14,8 @@ namespace Microsoft.Azure.Management.Cdn.Models using System.Linq; /// - /// Error reponse indicates CDN service is not able to process the incoming - /// request. The reason is provided in the error message. + /// Error response indicates CDN service is not able to process the + /// incoming request. The reason is provided in the error message. /// public partial class ErrorResponse { diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/KeyVaultCertificateSourceParameters.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/KeyVaultCertificateSourceParameters.cs new file mode 100644 index 0000000000000..1a09efcef3f13 --- /dev/null +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/KeyVaultCertificateSourceParameters.cs @@ -0,0 +1,153 @@ +// +// 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.Cdn.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes the parameters for using a user's KeyVault certificate for + /// securing custom domain. + /// + public partial class KeyVaultCertificateSourceParameters + { + /// + /// Initializes a new instance of the + /// KeyVaultCertificateSourceParameters class. + /// + public KeyVaultCertificateSourceParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// KeyVaultCertificateSourceParameters class. + /// + /// Subscription Id of the user's Key + /// Vault containing the SSL certificate + /// Resource group of the user's Key + /// Vault containing the SSL certificate + /// The name of the user's Key Vault containing + /// the SSL certificate + /// The name of Key Vault Secret (representing + /// the full certificate PFX) in Key Vault. + /// The version(GUID) of Key Vault Secret + /// in Key Vault. + public KeyVaultCertificateSourceParameters(string subscriptionId, string resourceGroupName, string vaultName, string secretName, string secretVersion) + { + SubscriptionId = subscriptionId; + ResourceGroupName = resourceGroupName; + VaultName = vaultName; + SecretName = secretName; + SecretVersion = secretVersion; + CustomInit(); + } + /// + /// Static constructor for KeyVaultCertificateSourceParameters class. + /// + static KeyVaultCertificateSourceParameters() + { + Odatatype = "#Microsoft.Azure.Cdn.Models.KeyVaultCertificateSourceParameters"; + UpdateRule = "NoAction"; + DeleteRule = "NoAction"; + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets subscription Id of the user's Key Vault containing the + /// SSL certificate + /// + [JsonProperty(PropertyName = "subscriptionId")] + public string SubscriptionId { get; set; } + + /// + /// Gets or sets resource group of the user's Key Vault containing the + /// SSL certificate + /// + [JsonProperty(PropertyName = "resourceGroupName")] + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the user's Key Vault containing the SSL + /// certificate + /// + [JsonProperty(PropertyName = "vaultName")] + public string VaultName { get; set; } + + /// + /// Gets or sets the name of Key Vault Secret (representing the full + /// certificate PFX) in Key Vault. + /// + [JsonProperty(PropertyName = "secretName")] + public string SecretName { get; set; } + + /// + /// Gets or sets the version(GUID) of Key Vault Secret in Key Vault. + /// + [JsonProperty(PropertyName = "secretVersion")] + public string SecretVersion { get; set; } + + /// + /// + [JsonProperty(PropertyName = "@odata.type")] + public static string Odatatype { get; private set; } + + /// + /// Describes the action that shall be taken when the certificate is + /// updated in Key Vault. + /// + [JsonProperty(PropertyName = "updateRule")] + public static string UpdateRule { get; private set; } + + /// + /// Describes the action that shall be taken when the certificate is + /// removed from Key Vault. + /// + [JsonProperty(PropertyName = "deleteRule")] + public static string DeleteRule { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SubscriptionId"); + } + if (ResourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ResourceGroupName"); + } + if (VaultName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "VaultName"); + } + if (SecretName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SecretName"); + } + if (SecretVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SecretVersion"); + } + } + } +} diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/ProtocolType.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/ProtocolType.cs new file mode 100644 index 0000000000000..5b688bfba0f40 --- /dev/null +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/ProtocolType.cs @@ -0,0 +1,22 @@ +// +// 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.Cdn.Models +{ + + /// + /// Defines values for ProtocolType. + /// + public static class ProtocolType + { + public const string ServerNameIndication = "ServerNameIndication"; + public const string IPBased = "IPBased"; + } +} diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/UserManagedHttpsParameters.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/UserManagedHttpsParameters.cs new file mode 100644 index 0000000000000..d4271e8024dad --- /dev/null +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/UserManagedHttpsParameters.cs @@ -0,0 +1,80 @@ +// +// 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.Cdn.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines the certificate source parameters using user's keyvault + /// certificate for enabling SSL. + /// + [Newtonsoft.Json.JsonObject("AzureKeyVault")] + public partial class UserManagedHttpsParameters : CustomDomainHttpsParameters + { + /// + /// Initializes a new instance of the UserManagedHttpsParameters class. + /// + public UserManagedHttpsParameters() + { + CertificateSourceParameters = new KeyVaultCertificateSourceParameters(); + CustomInit(); + } + + /// + /// Initializes a new instance of the UserManagedHttpsParameters class. + /// + /// Defines the TLS extension protocol that + /// is used for secure delivery. Possible values include: + /// 'ServerNameIndication', 'IPBased' + /// Defines the certificate + /// source parameters using user's keyvault certificate for enabling + /// SSL. + public UserManagedHttpsParameters(string protocolType, KeyVaultCertificateSourceParameters certificateSourceParameters) + : base(protocolType) + { + CertificateSourceParameters = certificateSourceParameters; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets defines the certificate source parameters using user's + /// keyvault certificate for enabling SSL. + /// + [JsonProperty(PropertyName = "certificateSourceParameters")] + public KeyVaultCertificateSourceParameters CertificateSourceParameters { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (CertificateSourceParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "CertificateSourceParameters"); + } + if (CertificateSourceParameters != null) + { + CertificateSourceParameters.Validate(); + } + } + } +} diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/ProfilesOperations.cs b/src/SDKs/Cdn/Management.Cdn/Generated/ProfilesOperations.cs index 25c4cb5ad1ef4..439a5103e7097 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/ProfilesOperations.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/ProfilesOperations.cs @@ -705,7 +705,7 @@ internal ProfilesOperations(CdnManagementClient client) /// /// Generates a dynamic SSO URI used to sign in to the CDN supplemental portal. - /// Supplemnetal portal is used to configure advanced feature capabilities that + /// Supplemental portal is used to configure advanced feature capabilities that /// are not yet available in the Azure portal, such as core reports in a /// standard profile; rules engine, advanced HTTP reports, and real-time stats /// and alerts in a premium profile. The SSO URI changes approximately every 10 diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/ProfilesOperationsExtensions.cs b/src/SDKs/Cdn/Management.Cdn/Generated/ProfilesOperationsExtensions.cs index 40b11b4f5a4c8..ee1e66b61c22f 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/ProfilesOperationsExtensions.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/ProfilesOperationsExtensions.cs @@ -266,7 +266,7 @@ public static void Delete(this IProfilesOperations operations, string resourceGr /// /// Generates a dynamic SSO URI used to sign in to the CDN supplemental portal. - /// Supplemnetal portal is used to configure advanced feature capabilities that + /// Supplemental portal is used to configure advanced feature capabilities that /// are not yet available in the Azure portal, such as core reports in a /// standard profile; rules engine, advanced HTTP reports, and real-time stats /// and alerts in a premium profile. The SSO URI changes approximately every 10 @@ -288,7 +288,7 @@ public static SsoUri GenerateSsoUri(this IProfilesOperations operations, string /// /// Generates a dynamic SSO URI used to sign in to the CDN supplemental portal. - /// Supplemnetal portal is used to configure advanced feature capabilities that + /// Supplemental portal is used to configure advanced feature capabilities that /// are not yet available in the Azure portal, such as core reports in a /// standard profile; rules engine, advanced HTTP reports, and real-time stats /// and alerts in a premium profile. The SSO URI changes approximately every 10 diff --git a/src/SDKs/Cdn/Management.Cdn/Microsoft.Azure.Management.Cdn.csproj b/src/SDKs/Cdn/Management.Cdn/Microsoft.Azure.Management.Cdn.csproj index 4426a7f460d0e..7dbd7c8ac2cac 100644 --- a/src/SDKs/Cdn/Management.Cdn/Microsoft.Azure.Management.Cdn.csproj +++ b/src/SDKs/Cdn/Management.Cdn/Microsoft.Azure.Management.Cdn.csproj @@ -5,11 +5,11 @@ Microsoft Azure CDN Management Library - 4.0.2-preview + 4.1.2-preview Microsoft.Azure.Management.Cdn Microsoft.Azure.Management.Cdn Microsoft Azure CDN management;CDN;Cdn management; - Added Standard_Microsoft sku in CDN pricing tiers and generated the SDK using the latest version of the swagger + Added support for "Using user's certificate" for enabling SSL on CDN custom domains and generated the SDK using the latest version of the swagger diff --git a/src/SDKs/Cdn/Management.Cdn/Properties/AssemblyInfo.cs b/src/SDKs/Cdn/Management.Cdn/Properties/AssemblyInfo.cs index d189f9c422679..17baf1a408156 100644 --- a/src/SDKs/Cdn/Management.Cdn/Properties/AssemblyInfo.cs +++ b/src/SDKs/Cdn/Management.Cdn/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure CDN.")] [assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.0.1.0")] +[assembly: AssemblyFileVersion("4.1.2.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/SDKs/_metadata/cdn_resource-manager.txt b/src/SDKs/_metadata/cdn_resource-manager.txt index 117e42f510d21..f547281fe9814 100644 --- a/src/SDKs/_metadata/cdn_resource-manager.txt +++ b/src/SDKs/_metadata/cdn_resource-manager.txt @@ -1,11 +1,11 @@ -2018-08-31 23:08:31 UTC +2019-03-04 22:39:14 UTC 1) azure-rest-api-specs repository information GitHub user: Azure Branch: master -Commit: d1c547628c8130fab7d35dd6b1f6a250646b6a51 +Commit: fedf467ee808694dc3e568c242747043ea42978d 2) AutoRest information Requested version: latest -Bootstrapper version: C:\Program Files\nodejs `-- autorest@2.0.4283 +Bootstrapper version: C:\Users\nachakra\AppData\Roaming\npm `-- autorest@2.0.4283 Latest installed version: